背景色が異なる別のレイアウトの中にあるレイアウトを作成したいとしますが、内側のレイアウト (この場合は 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>