文本的中心重力属性在android按钮中不起作用

时间:2017-06-14 03:32:23

标签: android android-layout button layout-gravity

我的button内部布局中有两个TableLayout,但文字不在中心,我尝试使用android:gravity="center"和android android:layout_gravity="center",但似乎是不起作用。

我该如何解决这个问题?提前谢谢

<RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="20dp"
        android:id="@+id/bawah"
        android:layout_margin="10dp"
        android:layout_alignParentBottom="true"

        >
        <TableLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <TableRow
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:weightSum="10">
                <Button
                    android:layout_width="0dip"
                    android:layout_height="wrap_content"
                    android:text="Approve"
                    android:textColor="@color/putih"
                    android:textAlignment="center"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:layout_weight="4.9"
                    android:id="@+id/approve"
                    android:background="@drawable/backhijau"

                    />
                <TextView android:layout_height="wrap_content"
                    android:layout_width="0dip"
                    android:layout_weight="0.2"/>
        <Button
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="4.9"
            android:textAlignment="center"
            android:text="Tolak"
            android:layout_gravity="center"
            android:gravity="center"
            android:textColor="@color/putih"
            android:id="@+id/tolak"
            android:background="@drawable/backmerah"
            />


            </TableRow>
        </TableLayout>
    </RelativeLayout>

enter image description here

2 个答案:

答案 0 :(得分:2)

对我来说,复制并通过此代码并告诉我

似乎没问题
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/bawah"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_margin="10dp"
    android:layout_marginRight="20dp">

        <TableRow
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:weightSum="10">

            <Button
                android:id="@+id/approve"
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_weight="4.9"
                android:background="@color/colorAccent"
                android:gravity="center"
                android:text="Approve"
                android:textAlignment="center"
                android:textColor="@color/colorPrimary"

                />

            <TextView
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:layout_weight="0.2" />

            <Button
                android:id="@+id/tolak"
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_weight="4.9"
                android:background="@color/colorPrimary"
                android:gravity="center"
                android:text="Tolak"
                android:textAlignment="center"
                android:textColor="@android:color/white" />

        </TableRow>


</RelativeLayout>

<强>输出

enter image description here

答案 1 :(得分:2)

不需要TableLayout,只需使用RelativeLayoutandroid:layout_below属性,您就可以获得所需的结果。此外,无需实现weightSum属性。

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginRight="20dp"
        android:id="@+id/bawah"
        android:layout_margin="10dp">
                <Button
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="Approve"
                    android:textColor="@color/putih"
                    android:textAlignment="center"
                    android:id="@+id/approve"
                    android:background="@drawable/backhijau"

                    />
                <Button
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:textAlignment="center"
                    android:text="Tolak"
                    android:layout_below="@+id/approve"
                    android:textColor="@color/putih"
                    android:id="@+id/tolak"
                    android:background="@drawable/backmerah"
                    />

    </RelativeLayout>