Android Table 行,文本不能居中
Android Table row, cannot center text
我有以下布局代码:
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tableLayout1"
android:gravity="center_vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<!-- APP NAME -->
<TableRow
android:id="@+id/table_heading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#2d9adf"
android:gravity="center_vertical"
android:padding="5dip" >
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/textView2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:gravity="center_horizontal"
android:text="@string/app_name"
android:textColor="#fff"
android:textSize="16sp" />
</RelativeLayout>
</TableRow>
问题是,结果没有居中(见下图):
请问如何解决?
很容易解决这个问题。您需要更改 RelativeLayout
以具有正确的尺寸:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
这样它会拉伸顶部 TableRow
的完整尺寸。然后你可以将它添加到你的 TextView
:
android:layout_centerInParent="true"
将 TextView
置于 RelativeLayout
的中心,它跨越 TableRow
。
我有以下布局代码:
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tableLayout1"
android:gravity="center_vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<!-- APP NAME -->
<TableRow
android:id="@+id/table_heading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#2d9adf"
android:gravity="center_vertical"
android:padding="5dip" >
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/textView2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:gravity="center_horizontal"
android:text="@string/app_name"
android:textColor="#fff"
android:textSize="16sp" />
</RelativeLayout>
</TableRow>
问题是,结果没有居中(见下图):
请问如何解决?
很容易解决这个问题。您需要更改 RelativeLayout
以具有正确的尺寸:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
这样它会拉伸顶部 TableRow
的完整尺寸。然后你可以将它添加到你的 TextView
:
android:layout_centerInParent="true"
将 TextView
置于 RelativeLayout
的中心,它跨越 TableRow
。