layout_centerInParent 在 RelativeLayout 中不以模拟器或设备为中心

layout_centerInParent in a RelativeLayout doesn't center on emulator or device

我有一个采用这种布局的片段:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="My Fragment"
        android:textSize="30sp"
        android:layout_centerInParent="true"/>
</RelativeLayout>

在 Android Studio 预览中,我看到了这个:

很好,但在模拟器或真实设备上我看到:

我错过了什么?我如何使该文本在父级中居中?

父布局是 FrameLayout:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <android.support.v7.widget.Toolbar
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:id="@+id/toolbar"/>

    <FrameLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:id="@+id/frame_layout">

    </FrameLayout>
</LinearLayout>

尝试添加这些属性:

 android:layout_centerHorizontal="true"
 android:layout_centerVertical="true"

您需要更改 FrameLayout

的宽度

FrameLayout 宽度更改为 android:layout_width="match_parent"

示例代码

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <android.support.v7.widget.Toolbar
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:id="@+id/toolbar"/>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/frame_layout">

    </FrameLayout>
</LinearLayout>

您的 frame layout 中有错误。浏览其文档以阅读详细信息。

修复父级中的框架布局XML内容:

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/frame_layout"/>