gpt4 book ai didi

android - "LinearLayout or its RelativeLayout parent is useless"警告

转载 作者:行者123 更新时间:2023-11-29 01:31:17 26 4
gpt4 key购买 nike

我有以下布局

...
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight=".8">
<LinearLayout
android:layout_width="320dp"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_centerInParent="true"
android:baselineAligned="false">
<include layout="@layout/sublayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_gravity="center_vertical" />
<include layout="@layout/sublayout2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" />
</LinearLayout>
</RelativeLayout>
...

我不明白为什么我会收到警告“This LinearLayout layout or its RelativeLayout parent is possibly useless”。

我在布局设计中尝试做的是将 sublayaout1 和 sublayaout2 都置于屏幕中间。为此,我需要将 android:layout_centerInParent 属性设置为 true,并且我需要将 RelativeLayout 父级作为容器,因为它位于具有多行的水平 LinearLayout 中。

没有 RelativeLayout 有没有办法让 LinearLayout 居中?谢谢

最佳答案

LinearLayout 上使用 android:gravity="center"。删除不必要的 RelativeLayout。不要与 android:layout_gravity 混淆。

<LinearLayout
android:layout_width="320dp"
android:layout_height="0dp"
android:layout_weight=".8"
android:orientation="horizontal"
android:gravity="center"
android:baselineAligned="false">
<include layout="@layout/sublayout1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_gravity="center_vertical" />
<include layout="@layout/sublayout2"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />
</LinearLayout>

关于android - "LinearLayout or its RelativeLayout parent is useless"警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31094383/

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