如何水平設置ScrollView
垂直&?我嘗試了下面的代碼,但沒有奏效。在TableLayout中使用ScrollView&HorizontalScrollView
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbarFadeDuration="1000"
android:scrollbarSize="12dip"
android:background="@color/red" >
<HorizontalScrollView android:id="@+id/horizontalScrollView1" android:layout_width="wrap_content" android:layout_height="wrap_content">
<TableLayout android:layout_width="match_parent" android:layout_marginTop="10dp" android:id="@+id/tableLayout1" android:layout_height="wrap_content" android:stretchColumns="1" android:collapseColumns="2">
</TableLayout>
</HorizontalScrollView>
</ScrollView>
這是我的所有代碼:http://pastebin.com/ysRhLMyt
根據您的建議,它會在每一行顯示水平滾動條?是嗎? – Piraba
是的,如果不需要,你總是可以禁用滾動條。 –