假设我想在另一个布局中创建一个具有不同背景颜色的布局,但是一旦我向内部布局添加背景颜色(在这种情况下为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>
答案 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>