0
posted
Scrollview can host only one direct child
using ScrollView for scrollable layoutand
<ScrollView
android:layout_width="match_parent"
android:layout_height="200dp"
>
<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
Here some sub elements
</LinearLayout>
<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
Here some sub elements
</LinearLayout>
</ScrollView>
but getting error scrollview can host only one direct child
how to solve this scrollview can host only one direct child error ?