2012-04-27 13 views
0

この表では、スクロールビューを設定したいと考えています。どうすればいいですか?テーブルレイアウト内のScrollview?

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

答えて

1

私の知る限りでは、TableLayoutはScrollView内でできるだけ:

<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> 
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> 
です