如果里面有另一个布局,背景会丢失颜色

时间:2012-04-18 20:02:47

标签: android xml

假设我想在另一个布局中创建一个具有不同背景颜色的布局,但是一旦我向内部布局添加背景颜色(在这种情况下为frameLayout6),外部布局的背景就会变得透明......

enter image description here

任何想法可能出错?

谢谢!

                <FrameLayout
                    android:id="@+id/frameLayout5"
                    android:layout_width="160px"
                    android:layout_height="160px" android:background="#FFFFFF" android:layout_marginLeft="20px">

                    <FrameLayout
                        android:id="@+id/frameLayout6"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent" android:layout_margin="5px">
                    </FrameLayout>

                </FrameLayout>

1 个答案:

答案 0 :(得分:1)

内部布局(frameLayout6)位于framelayout5上,因此如果在内部布局中设置背景,则无法看到framelayout5。

编辑:

我不知道为什么会发生这种情况,但你可以这样做

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <RelativeLayout android:id="@+id/frameLayout5"
         android:layout_height="160dp"
        android:layout_marginLeft="20dp" android:layout_width="160dp">

        <View android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#ff00ff"/>

        <RelativeLayout android:layout_width="fill_parent"
            android:background="#ff0000" android:layout_height="fill_parent"
            android:layout_margin="50dp" android:drawingCacheQuality="auto">
        </RelativeLayout>

    </RelativeLayout>
</LinearLayout>