gpt4 book ai didi

android - LinearLayout 或其 LinearLayout parent 没用,我可以忽略警告消息吗?

转载 作者:太空宇宙 更新时间:2023-11-03 12:39:20 25 4
gpt4 key购买 nike

我遇到嵌套布局问题并抛出一些异常。错误是“此 LinearLayout 布局或其 LinearLayout 父级无用......”。我知道我可以通过此设置忽略此警告。

设置:Build Path->Configure Build Path.... 在 Android Lint Preferences 下查找 UselessParent 并将其严重性设置为忽略或单击 Ignore All。

但是,Eclipse 图形布局无法显示任何内容并显示错误消息 - “索引:0,大小 0,异常详细信息记录在窗口 > 显示 View > 错误日志中”。

如何使图形布局显示嵌套布局?

这是我的代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@drawable/menu_bg2"
android:orientation="vertical" >

<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/menu_item1"
android:src="@drawable/alarm2x" />

<ImageButton
android:id="@+id/imageButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/menu_item2"
android:src="@drawable/bank2x" />

<ImageButton
android:id="@+id/imageButton3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/menu_item3"
android:src="@drawable/brief_case2x" />

<ImageButton
android:id="@+id/imageButton4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/menu_item4"
android:src="@drawable/trolley2x" />

<ImageButton
android:id="@+id/imageButton5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/menu_item5"
android:src="@drawable/calculator2x" />

</LinearLayout>
</LinearLayout>

谢谢大家。

最佳答案

因为在第一个LinearLayout中,里面只有一个view,而且是一个LinearLayout。

这是图示的结构:

LinearLayout
LinearLayout
ImageButton
ImageButton
ImageButton
ImageButton
ImageButton
// You should add another View or ViewGroup for the first LinearLayout

LinearLayout 是 ViewGroup 的子类,旨在对至少 2 个(CMIIW)的一些 View 进行分组。

因此,发出警告是因为它假设您的第一个 LinearLayout 没有任何要分组的内容,或者如果您省略它也没关系。

对不起,如果我的英语解释不好。

关于android - LinearLayout 或其 LinearLayout parent 没用,我可以忽略警告消息吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11537511/

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