我正在开发一个 android 应用程序,其中我需要 3 个表格布局,第一个和最后一个应该水平滚动,中间一个应该双向滚动,我需要动态地向这些表格布局添加行。
问问题
259 次
1 回答
0
尝试以这种方式创建布局,
<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TableLayout
android:id="@+id/table_layout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</TableLayout>
<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TableLayout
android:id="@+id/table_layout2"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</TableLayout>
</HorizontalScrollView>
<TableLayout
android:id="@+id/table_layout3"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</TableLayout>
</LinearLayout>
</ScrollView>
于 2012-07-05T06:51:11.003 回答