我只是將一個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