0

このテーブルにスクロールビューを設定したいと思います。どうすればいいですか?

<TableLayout
    android:id="@+id/lunchtableviewing"
    android:layout_width="194dp"
    android:layout_column="0"
    android:layout_columnSpan="4"
    android:layout_row="7" >
</TableLayout>
4

2 に答える 2

1

私の知る限り、ScrollView内のTableLayoutは次のように可能です:

<ScrollView 
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout 
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TableLayout
    android:id="@+id/lunchtableviewing"
    android:layout_width="194dp"
    android:layout_column="0"
    android:layout_columnSpan="4"
    android:layout_row="7" >
</TableLayout>
</LinearLayout>
</ScrollView>
于 2012-04-27T19:00:56.430 に答える
1

こうやって

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent">

<TableLayout
android:id="@+id/lunchtableviewing"
android:layout_width="194dp"
android:layout_column="0"
android:layout_columnSpan="4"
android:layout_row="7" >
</TableLayout>
</ScrollView>
于 2012-04-27T19:01:59.700 に答える