在相对布局下用TableLayout(TableRow)控件不能居中的问题

旧城冷巷雨未停 提交于 2019-12-07 02:03:58

我在TableRow里面加了

android:gravity="center"

还是没有用。(具体代码如下:)

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.administrator.samelistener.MainActivity">

    <TableLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center_vertical">
        <TableRow
            android:gravity="center">
            <Button
                android:id="@+id/btn1"
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:text="按钮1"/>
            <Button
                android:id="@+id/btn2"
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:text="按钮2"/>
        </TableRow>
        <TableRow
            android:gravity="center">
            <Button
                android:id="@+id/btn3"
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:text="按钮3"/>
            <Button
                android:id="@+id/btn4"
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:text="按钮4"/>
        </TableRow>
    </TableLayout>
</RelativeLayout>

四个按钮还是处于右边
这里写图片描述
后来才发现是tablelayout没有铺满整个上层界面

<!--把宽度设置成fill_parent就行了-->
<TableLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical">

这里写图片描述

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!