0

我有一个透明背景的相对布局。下面是一个带有 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>

这只是黑色背景。

4

1 回答 1

0

尝试如下:

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
       android:id="@+id/layoutabove"
       android:layout_width="match_parent"
       android:layout_height="match_parent"

<RelativeLayout
    android:id="@+id/layoutabove"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#55000000" >
    <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:layout_height="wrap_content"
    android:background="#000000"
    android:orientation="vertical"
    android:layout_below="@+id/layoutabove" >
    <ListView
        android:id="@+id/listView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >
    </ListView>
</LinearLayout>
</RelativeLayout>
于 2013-02-02T09:43:56.103 回答