1.设置页面背景颜色,alpha控制透明度,0-100
<FrameLayout android:id="@+id/test" android:layout_width="fill_parent" android:layout_height="fill_parent" android:alpha="0.75" android:background="@color/whole_white" />
2.自定义style
<color name="translucent_background">#01000000</color>
<style name="translucent" parent="Theme.AppCompat"> <item name="android:windowBackground">@color/translucent_background</item> <item name="android:windowIsTranslucent">true</item> </style>
<activity android:name=".activity.NoticeActivity" android:launchMode="singleTask" android:screenOrientation="portrait" android:theme="@style/translucent" />