我真的只需要ScrollView
包裹我LinearLayout
中的3 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>
答案 0 :(得分:1)
当然 - 让您的ScrollView
成为FrameLayout
LinearLayout
,RelativeLayout
或{{1}}的一个孩子并将内容放入其中。