我在我的XML文件中使用TableLayout但有一个大问题,首先看看我的XML文件代码plz:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TableLayout
android:id="@+id/tableLayout1"
android:background="#fb0977"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp" >
<TableRow
android:id="@+id/tableRow4"
android:gravity="right"
android:background="#FFFFFF"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="2dp"
android:layout_marginRight="2dp"
android:layout_marginTop="1dp"
android:layout_marginBottom="0dp"
android:padding="2dp">
<TextView
android:id="@+id/Name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="right"
android:textStyle="bold"
android:textSize="18dp"
android:text="Name:">
</TextView>
</TableRow>
<TableRow
android:id="@+id/tableRow5"
android:gravity="right"
android:background="#FFFFFF"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="2dp"
android:layout_marginRight="2dp"
android:layout_marginTop="1dp"
android:layout_marginBottom="0dp"
android:padding="2dp">
<TextView
android:id="@+id/Address"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="right"
android:textStyle="bold"
android:textSize="18dp"
android:text="Address">
</TextView>
</TableRow>
</TableLayout>
当我为姓名ID或地址ID使用大文字时,我的行数据不会中断并且不会在下一行继续显示,并且当我们有一个长字符串时显示在屏幕外不正确的观点...... 你能帮助我如何更改设置XML文件以显示正确吗? TNX