1

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

在此处输入图像描述

任何想法可能有什么问题?

谢谢!

                <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>
4

1 回答 1

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>
于 2012-04-18T20:07:18.763 回答