解决方法
如果您使用自己的布局,只需将容器更改为RelativeLayout(或继承自RelativeLayout的Layout类),并将颜色叠加层放在主布局之后.您只需添加一个视图并设置它的背景和alpha.设置为值1的alpha将激活此叠加,而将alpha设置为0将恢复正常.
例:
<RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent"> <!-- add your views here --> <View android:layout_width="match_parent" android:layout_height="match_parent" android:background="#8000FF00" /> </RelativeLayout>
这将覆盖具有50%alpha的绿色图层,而不是布局中位于其之前的其他视图.