假设我想在另一个具有不同背景颜色的布局中创建一个布局,但是一旦我将背景颜色添加到内部布局(在本例中为 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>