1
我正在開發一個android應用程序,其中我需要3個表格佈局第一和最後一個應該在水平和中間滾動應滾動在兩個方向,我需要添加行到那些表格佈局動態。使垂直滾動條可見和水平滾動條可見
我正在開發一個android應用程序,其中我需要3個表格佈局第一和最後一個應該在水平和中間滾動應滾動在兩個方向,我需要添加行到那些表格佈局動態。使垂直滾動條可見和水平滾動條可見
嘗試創建這樣一個佈局,
<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>