我的布局如下:
<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
没有背景,也没有任何子女。我可以在冰淇淋三明治设备上看到View
下方的白色LinearLayout
,但不能看到姜饼设备上的白色LinearLayout
。任何人都知道为什么会这样,我能做些什么呢?
注意:我没有将
View
的背景设置为白色 我真正需要做的是在{{1}}对象上执行一些动画。