gpt4 book ai didi

android - RelativeLayout 中的 layout_centerInParent 不以模拟器或设备为中心

转载 作者:太空狗 更新时间:2023-10-29 13:02:00 31 4
gpt4 key购买 nike

我有一个具有这种布局的 fragment :

<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>

最佳答案

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

关于android - RelativeLayout 中的 layout_centerInParent 不以模拟器或设备为中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55490523/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com