【发布时间】:2011-08-30 07:25:47
【问题描述】:
如何垂直和水平设置ScrollView?我尝试使用下面的代码,但没有成功。
<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
【问题讨论】: