当我使用RelativeLayout时,为什么android:layout_above =“@ id / mh01”是错误的

时间:2016-02-19 11:46:22

标签: android android-layout

在我的布局中为什么 当我使用RelativeLayout时,android:layout_above =“@ id / mh01”错误了!

enter image description here

enter image description here

我不知道为什么这是错的

更新:

我已经处理了标题描述的问题。但我遇到了一个新问题 这段XML代码出了点问题:

   <?xml version="1.0" encoding="utf-8"?>
        <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_height="fill_parent"
            android:layout_width="fill_parent"
            android:id="@+id/relativeLayout1">
            <ImageView
                android:id="@+id/mh011"
                android:layout_width="80dp"
                android:layout_height="80dp"
                android:background="@drawable/mh01"
                android:layout_centerInParent="true"
                />
            <ImageView
                android:id="@+id/mh022"
                android:layout_width="80dp"
                android:layout_height="80dp"
                android:background="@drawable/mh02"
                android:layout_above="@+id/mh011"
                android:layout_centerHorizontal="true" 
                />
            <ImageView
                android:layout_width="80dp"
                android:layout_height="80dp"
                android:id="@+id/mh033"
                android:background="@drawable/mh_03"
                android:layout_toLeftOf="@+id/mh011"
                android:layout_centerVertical="true"
                />
            <ImageView
                android:layout_width="80dp"
                android:layout_height="80dp"
                android:id="@+id/mh044"
                android:background="@drawable/mh04"
                android:layout_toRightOf="@+id/mh011"
                android:layout_centerVertical="true"
                />
            <ImageView
                android:layout_width="80dp"
                android:layout_height="80dp"
                android:id="@+id/mh055"
                android:background="@drawable/mh05"
                android:layout_below="@+id/mh011"
                android:layout_centerHorizontal="true"/>

> 
            </RelativeLayout>

1 个答案:

答案 0 :(得分:0)

<强>更新 尝试设置:

2. Current Solution
所有imageView中的

编辑后

您的代码:

android:contentDescription="@null"