views:

32

answers:

1

My code for the Layout is given below. I am not able see the full content. I am not able to scoll also. How i can show the all content by scrolling.

Screen shot of the phone also giving Thank you. alt text

A: 

Surround your layout with a ScrollView... (and I cant see any layout code you mentioned...)

WarrenFaith
I used ScrollView ,But it is showing IllegalStateException "Scollview can host only one direct chiled"
mohammedsuhail
well, all XML files can only have one root element, so even without a ScrollView you will have something like a LinearLayout as root, right? So don't replace this Layout with a ScrollView, instead surround this layout with the ScrollView. That the ScrollView will have only one child.
WarrenFaith
Yes. Now it is working. thank you Warren.
mohammedsuhail