0

こんにちは、通常のスクロール ビューでテーブル レイアウトを作成しました。垂直方向と水平方向の両方にスクロールさせたいと思います。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>
4

1 に答える 1

1

通常のスクロール ビューの代わりに、水平スクロール ビューを使用します。

<Layout>
 <HorizontalScrollView 
        android:id="@+id/horizontalView" 
        android:layout_height="wrap_content"     
        android:scrollbars="horizontal|vertical" 
        android:layout_width="wrap_content"     
        android:layout_marginTop="5dip">
<TableLayout>
    // child views...
</TableLayout>
</HorizontalScrollView>
</Layout>

これで問題が解決することを願っています:-)

于 2013-09-21T07:55:31.920 に答える