这个RelativeLayout布局或其LinearLayout父级可能没用?

时间:2014-07-23 12:02:22

标签: android android-layout

xml RelativeLayout以下This RelativeLayout layout or its LinearLayout parent is possibly useless 让我这样:

警告:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
    android:id="@+id/heading"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <RelativeLayout <--- This RelativeLayout layout or its LinearLayout parent is possibly useless -->
        android:id="@+id/dings"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" 
        android:layout_margin="8dip">

        <ProgressBar
            android:id="@+id/prgDownload"
            style="?android:attr/progressBarStyleHorizontal"
            android:layout_width="fill_parent"
            android:layout_height="32dip"/>

        <TextView
            android:id="@+id/txtDownload"
            android:layout_width="fill_parent"
            android:layout_height="32dip"
            android:gravity="center"
            android:text="..."
            android:textColor="#afafaf"
            android:textSize="18dip"
            android:textStyle="bold" />
    </RelativeLayout>

</LinearLayout>

XML文件:

LinearLayout

注意:我的verticalhorizontal,但当我使用它时,它会转换为Graphical Layout中的{{1}}。

2 个答案:

答案 0 :(得分:2)

“线性布局”包含相对布局,其中包含其余视图。只需删除线性布局标签,您就可以开始使用了!

答案 1 :(得分:0)

这意味着您将RelativeLayout包含在LinearLayout中但实际上您的相对布局是必需的,您只需要删除Linearlayout。