透明视图

来源:互联网 发布:美丽水世界优化补丁 编辑:程序博客网 时间:2024/04/29 07:05

开发的时候总是记不住,所以还是保留下来,便于下次查看吧。

values/styles.xml<?xml version="1.0" encoding="utf-8"?><resources><drawable name="translucent_background">#44000000</drawable><style name="Theme.Transparent" parent="android:style/Theme.Translucent">    <item name="android:windowIsTranslucent">true</item>    <item name="android:windowBackground">@drawable/translucent_background</item>    <item name="android:windowNoTitle">true</item>    <item name="android:colorForeground">#fff</item>    <item name="android:windowIsFloating">true</item>    <item name="android:backgroundDimEnabled">false</item></style></resources>
AndroidManifest.xml中activity的属性中添加

android:theme  ="@style/Theme.Transparent"