android:gravity不会改变TextView

时间:2016-07-06 10:42:16

标签: android xml android-layout

我正在编写一个活动,其中包含一个最初包含2行的表(参见屏幕截图)。我希望这两行中的文本位于中心(而不是TextView)。

但是,设置android:gravity = "center"android:gravity = "center_horizontal"根本不会影响文字 我错过了什么?

Screenshot

  

activity_game.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:orientation="horizontal"
android:padding="16dp"
tools:context=".MainActivity">

<TableLayout
    android:id="@+id/tl1"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1">

    <TableRow
        android:id="@+id/tr_header_p1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/table_row_bg"
        android:padding="5dp">

        <TextView
            android:id="@+id/player1_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="Player 1"
            android:textColor="#000000"
            android:textSize="24sp" />
    </TableRow>

    <TableRow
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/table_row_bg"
        android:padding="5dp">

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="@drawable/table_cell_bg"
            android:gravity="center"
            android:text="Guess"
            android:textColor="#000000"
            android:textSize="16sp" />

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="@drawable/table_cell_bg"
            android:gravity="center"
            android:text="Bulls"
            android:textColor="#000000"
            android:textSize="16sp" />

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center"
            android:text="Cows"
            android:textColor="#000000"
            android:textSize="16sp" />
    </TableRow>
</TableLayout>

<TableLayout
    android:id="@+id/tl2"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1">

    <TableRow
        android:id="@+id/tr_header"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/table_row_bg"
        android:padding="5dp">

        <TextView
            android:id="@+id/player2_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="Player 2"
            android:textColor="#000000"
            android:textSize="24sp" />
    </TableRow>

    <TableRow
        android:id="@+id/tr_header2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/table_row_bg"
        android:padding="5dp">

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="@drawable/table_cell_bg"
            android:gravity="center"
            android:text="Guess"
            android:textColor="#000000"
            android:textSize="16sp" />

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="@drawable/table_cell_bg"
            android:gravity="center"
            android:text="Bulls"
            android:textColor="#000000"
            android:textSize="16sp" />

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center"
            android:text="Cows"
            android:textColor="#000000"
            android:textSize="16sp" />
    </TableRow>

</TableLayout>

6 个答案:

答案 0 :(得分:1)

试试这个应该有效,

android:gravity="center"添加到@+id/tr_header_p1@+id/tr_header 等,

<TableRow
    android:id="@+id/tr_header_p1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:padding="5dp">

<TableRow
    android:id="@+id/tr_header"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:padding="5dp">

这可能有助于你

编辑1

或者您需要在TextView中提及android:layout_weight="1"。喜欢

 <TextView
        android:id="@+id/player2_name"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:layout_weight="1"
        android:text="Player 2"
        android:textColor="#000000"
        android:textSize="24sp" />

答案 1 :(得分:0)

尝试使用TextView的TableRow父级

android:gravity="CENTER_HORIZONTAL"

应用于子节点的表的默认布局,如文档here中所述

答案 2 :(得分:0)

试试这个:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white"
    android:orientation="horizontal"
    android:padding="16dp"
    tools:context=".MainActivity">

    <TableLayout
        android:id="@+id/tl1"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1">

        <TableRow
            android:id="@+id/tr_header_p1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:background="@drawable/table_row_bg"
            android:padding="5dp">

            <TextView
                android:id="@+id/player1_name"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"

                android:text="Player 1"
                android:textColor="#000000"
                android:textSize="24sp" />
        </TableRow>

        <TableRow
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@drawable/table_row_bg"
            android:padding="5dp">

            <TextView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:background="@drawable/table_cell_bg"
                android:gravity="center"
                android:text="Guess"
                android:textColor="#000000"
                android:textSize="16sp" />

            <TextView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:background="@drawable/table_cell_bg"
                android:gravity="center"
                android:text="Bulls"
                android:textColor="#000000"
                android:textSize="16sp" />

            <TextView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:gravity="center"
                android:text="Cows"
                android:textColor="#000000"
                android:textSize="16sp" />
        </TableRow>
    </TableLayout>

    <TableLayout
        android:id="@+id/tl2"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1">

        <TableRow
            android:id="@+id/tr_header"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:background="@drawable/table_row_bg"
            android:padding="5dp">

            <TextView
                android:id="@+id/player2_name"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:text="Player 2"
                android:textColor="#000000"
                android:textSize="24sp" />
        </TableRow>

        <TableRow
            android:id="@+id/tr_header2"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@drawable/table_row_bg"
            android:padding="5dp">

            <TextView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:background="@drawable/table_cell_bg"
                android:gravity="center"
                android:text="Guess"
                android:textColor="#000000"
                android:textSize="16sp" />

            <TextView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:background="@drawable/table_cell_bg"
                android:gravity="center"
                android:text="Bulls"
                android:textColor="#000000"
                android:textSize="16sp" />

            <TextView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:gravity="center"
                android:text="Cows"
                android:textColor="#000000"
                android:textSize="16sp" />
        </TableRow>

    </TableLayout>
</LinearLayout>

答案 3 :(得分:0)

您可以尝试将layout_width设置为wrap_content,然后将layout_gravity设置为center

对齐整个TextView而不是其中的文本

答案 4 :(得分:0)

如果您使用 TextView 中的 android:layout_gravity 会影响元素根据其父级的位置,该怎么办?有一个线程解释了下面两者之间的区别

Gravity and layout_gravity on Android

答案 5 :(得分:0)

<TableRow
        android:id="@+id/tr_header"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/table_row_bg"
        android:gravity="center_horizontal"
        android:padding="5dp">

        <TextView
            android:id="@+id/player2_name"
            android:layout_width="match_parent"
            android:gravity="center"
            android:text="Player 2"
            android:textColor="#000000"
            android:textSize="24sp" />
    </TableRow>

这对我有用