こんにちは、通常のスクロール ビューでテーブル レイアウトを作成しました。垂直方向と水平方向の両方にスクロールさせたいと思います。XML ではそれが可能であるか、テキストが長さを超えてテーブルの外に出て、テーブルのレイアウトが大きくなり、デバイスの外に移動するため、解決する他の解決策があるかどうか。
<ScrollView android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/linearImag">
<LinearLayout
android:id="@+id/relativelayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</LinearLayout>
<TableLayout
android:id="@+id/lead_table"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="20dp"
android:gravity="center"
android:stretchColumns="*" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<Button
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="25dp"
android:background="@drawable/bgbtn"
android:text="Lead ID"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textSize="20sp" />
</TableLayout>
<Button
android:id="@+id/btn_add"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginLeft="25dp"
android:layout_marginTop="20dp"
android:background="@drawable/add" />
<TextView
android:id="@+id/tv_data"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</ScrollView>