如何将JPG / PNG文件设置为移动主题?
答案 0 :(得分:1)
创建drawable / background.xml:
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/icon" />
创建values / styles.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CustomTheme" parent="android:Theme.Light">
<item name="android:windowBackground">@drawable/background</item>
</style>
</resources>
将此主题应用于manifest.xml中的活动或应用程序:
android:theme="@style/CustomTheme"
此主题将默认图像(icon.png)应用于属性windowBackground。