Search code examples
androidandroid-layoutandroid-scrollview

How can i add ScrollView to layout?


I'm trying to add scrollview layout to this layout :

a busy cat

I'm getting this error.

ScrollView can host only one direct child

How can I solve this problem?


Solution

  • A scrollView can not contain more that one child inside him

    WRONG

    <ScrollView>
       <LinearLayout>
           xxxxx
       </LinearLayout>
       <LinearLayout>
           xxxxx
       </LinearLayout>
    <ScrollView>
    

    RIGHT

    <ScrollView>
      <LinearLayout>
       <LinearLayout>
           xxxxx
       </LinearLayout>
       <LinearLayout>
           xxxxx
       </LinearLayout>
      </LinearLayout>
    <ScrollView>
    

    Only one direct child.