我的布局如下:
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/black" >
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<!-- children -->
</LinearLayout>
</FrameLayout>
LinearLayout
没有背景,它的任何孩子也没有。我可以在 Ice Cream Sandwich 设备上看到白色View
,LinearLayout
但在 Gingerbread 设备上看不到。任何人都知道为什么会这样以及我能做些什么?
注意:我没有将背景设置
LinearLayout
为白色,因为我真正需要做的是在View
对象上执行一些动画。