水平居中对齐 UI 项

Center-align horizontally UI items

我正在尝试创建我的第一个 Android 应用程序,我想水平对齐屏幕上的项目和行。

我已尝试将 layout_gravity 设置为 center_horizontal,如下所示,但这似乎没有任何效果。我错过了什么?

代码:

<?xml version="1.0" encoding="utf-8"?>
<android.support.wear.widget.BoxInsetLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="@dimen/box_inset_layout_padding"
    tools:deviceIds="wear">
    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:padding="@dimen/inner_frame_layout_padding"
        app:boxedEdges="all"
        android:minWidth="25px"
        android:minHeight="25px">
        <GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="match_parent"    
                android:rowCount="8"
                android:layout_gravity="center_horizontal"
                android:columnCount="1"
                android:orientation="horizontal">
            <TextView
                android:id="@+id/text"
                android:visibility="visible"
                android:textSize="9dp"
                android:layout_row="1"/>
            <TextView
                android:id="@+id/text2"
                android:visibility="visible"
                android:text="@string/hello_world"
                android:textAlignment="center"
                android:textSize="9dp"
                android:layout_row="2"/>
            <TextView
                android:id="@+id/serviceScore"
                android:layout_row="4"
                android:visibility="visible"
                android:textAlignment="center"
                android:textSize="50dp"/>
        </GridLayout>
    </FrameLayout>
</android.support.wear.widget.BoxInsetLayout>

UI:

尼斯问候!只需添加 Gravity of layout center 而不是 GridLayout 的 center_horizontal.

android:layout_gravity="center"