0

我想在 TextView 中显示长文本。这是我的 XML:

<TableLayout
    android:layout_width="fill_parent"
    android:layout_height="0dip"
    android:layout_weight="1" >

    <TableRow
        android:id="@+id/tableRow1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:padding="5dip"
            android:text="@string/text" />

        <TextView
            android:id="@+id/gender"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="right"
            android:text="@string/lorem" />
    </TableRow>
</TableLayout>

这就是它的样子:
在此处输入图像描述
长文本不合适。我必须改变什么?

4

2 回答 2

1
<TableLayout
        android:layout_width="fill_parent"
        android:layout_height="100dip"
        android:layout_weight="1" >

        <TableRow
            android:id="@+id/tableRow1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="0.5"
                android:padding="5dip"
                android:text="@string/text" />

            <TextView
                android:id="@+id/gender"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="0.5"
                android:gravity="right"
                android:text="@string/lorem" />
        </TableRow>
    </TableLayout>
于 2012-05-30T14:49:45.173 回答
0

取决于您想要实现的样式:如果可以拥有多行,您可以在 xml 中添加

android:singleLine="false"

或者

android:lines="2"

如果没有,你可以允许水平滚动它

 android:scrollHorizontally="true"
于 2012-05-30T14:50:46.850 回答