本当に必要なのは、自分の3つの子のうち1つだけをScrollView
ラップする必要がありますが、3番目の子をラップしようとすると、直接の子を1つしかホストできないというエラーが発生します。LinearLayout
ViewFlipper
ScrollView
回避策はありますか?
<ViewFlipper>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ScrollView android:id="@+id/ScrollView01"
android:layout_width="fill_parent"
android:layout_height="110dp">
<!--- Stuff --->
</ScrollView>
</LinearLayout>
</ViewFlipper>