在我的布局中为什么 当我使用RelativeLayout时,android:layout_above =“@ id / mh01”错误了!
我不知道为什么这是错的
更新:
我已经处理了标题描述的问题。但我遇到了一个新问题 这段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>
答案 0 :(得分:0)
<强>更新强> 尝试设置:
2. Current Solution
所有imageView中的编辑后
您的代码:
android:contentDescription="@null"