我有一个透明背景的相对布局。下面是一个带有 ListView 的 LinearLayout。问题是,我没有在透明的RelativeLayout 下方看到我的ListView。这是我的xml:
<RelativeLayout
android:id="@+id/layoutabove"
android:background="#55000000"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/loginbutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="Login" />
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@drawable/myimage" />
</RelativeLayout>
<LinearLayout
android:id="@+id/mainlayout"
android:layout_width="fill_parent"
android:background="#000000"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="fill_parent" >
</ListView>
</LinearLayout>
这只是黑色背景。