RelativeLayout中的layout_centerInParent不在模拟器或设备上居中

时间:2019-04-03 08:30:32

标签: android android-layout android-fragments android-relativelayout

我有一个这样的布局片段:

<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预览中,我看到了以下内容:

Enter image description here

哪个还可以,但是在仿真器或真实设备上,我看到了:

Enter image description here

我想念什么?如何在父母中居中显示该文本?

父级布局为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>

3 个答案:

答案 0 :(得分:2)

您需要更改 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>

答案 1 :(得分:0)

尝试添加以下属性:

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

答案 2 :(得分:0)

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

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

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