gpt4 book ai didi

android - 此 LinearLayout 布局或其 FrameLayout 父级无用;将背景属性转移到另一个 View

转载 作者:太空狗 更新时间:2023-10-29 16:43:06 29 4
gpt4 key购买 nike

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ff000000"
android:orientation="vertical" >

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="80.0dip"
android:orientation="vertical" >

<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingBottom="1.0dip"
android:paddingTop="1.0dip"
android:scrollbars="none" >

<include layout="@layout/quickactions_buttons_part" />
</HorizontalScrollView>
</LinearLayout>

但是我收到了这个警告

This LinearLayout layout or its FrameLayout parent is useless; transfer the background attribute to the other view

This HorizontalScrollView layout or its LinearLayout parent is useless

有谁知道我该怎么做才能让这条消息消失?

最佳答案

您有一个单独的组件(行)垂直线性布局,其中包含另一个线性布局。这没有任何意义,因为布局是多个组件的容器。如果只有一个组件,这样的容器是多余的,可以直接用它容纳的单个组件替换。

同样,第二个 LinearLayout 也没有意义,它包含一个组件,即 Horizo​​ntalScrollView。唯一可能重要的是现在需要在组件上指定的“80.0dip”属性。

因此您的布局不必要复杂。 FrameLayout 的内容可以更简单地重写为

<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="80.0dip"
android:paddingBottom="1.0dip"
android:paddingTop="1.0dip"
android:scrollbars="none" >
<include layout="@layout/quickactions_buttons_part" />
</HorizontalScrollView>

生成的代码运行速度更快且更易于理解。

关于android - 此 LinearLayout 布局或其 FrameLayout 父级无用;将背景属性转移到另一个 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14605474/

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