我有 xml 形状文件
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="90"
android:startColor="#420012"
android:centerColor="#670000"
android:endColor="#420012"
android:type="linear" />
<stroke
android:width="1px"
android:color="#560000" />
</shape>
怎么设置为墙纸?可能吗?我需要一个解释。
如果我执行此操作,将设置设备的默认壁纸。
WallpaperManager wm=WallpaperManager.getInstance(this);
wm.SetResource(R.drawable.bg);