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 に答える