我的应用程序中有这个布局,问题是,ImageView
它的 IDoverlay
没有显示在其他布局上,当我使用 Android SDK Hierarchy 查看器工具检查布局时,ImageView
高度为 0,位于底部布局。我错过了什么?或者是什么原因?
谢谢。
注意:Button
当我在相同条件下用 a 替换该视图时,不会出现此问题。但它与View
, 或一起出现ImageView
。
编辑:我使用提到ImageView
使整个视图有点偏红,我将它用作一个ListView
项目。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:id="@+id/label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/image" />
<ImageView
android:id="@id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"/>
<ImageView
android:id="@+id/overlay"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:background="#77ff0000" />
</RelativeLayout>