1.Resource source file location : res/values/styles.xml < style name="myTranslucentTheme" parent="android:style/Theme.Translucent"> < item name="android:windowBackground">@drawable/bg< /item> < /style> 其中 bg 为一张半透明图片的索引 2. 使用自定义半透明主题 AndroidManifest.xml Java代码 < activity android:name=".WallpaperActivity" android:label="@string/wallpaper_titile" android:theme="@style/myTranslucentTheme"> < /activity> < activity android:name=".WallpaperActivity" android:label="@string/wallpaper_titile" android:theme="@style/myTranslucentTheme"> < /activity> 为了防止横竖屏切换时 Activity 重新加载 onCreate ,只需要在 Activity 的配置文件里添加属性: android:configChanges="orientation|keyboardHidden|navigation" |