背景が透明な相対レイアウトがあります。そして、下に ListView がある LinearLayout。問題は、transaprent 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>
ただの黒背景です。