我只是将一个ScrollView添加到LinearLayout中,无论我更改它们的宽度,它都不会滚动。我是新手,任何人都帮我解决问题?提前致谢!为什么不滚动?
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbarStyle="outsideOverlay"
android:scrollbars="horizontal" >
<LinearLayout
android:layout_width="1000dp"
android:layout_height="wrap_content"
android:gravity="center" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/widget_box_action_1" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/widget_box_action_2" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/widget_box_action_3" />
...
</LinearLayout>
</ScrollView>
你真的想滚动水平吗? – Moritz 2012-02-26 09:57:51