Android 4.2 的修改默认壁纸 配置文件在:
/frameworks/base/core/res/res/values下的config.xml
其中有一行为:
<!-- Component name of the default wallpaper. This will be ImageWallpaper if not specified --> <string name="default_wallpaper_component" translatable="false">@null</string>
这里默认的live wallpaper是为@null,静态的图片壁纸和live wallpaper是两个系统,加载的时候是完全两套机制,静态图片通过launcher里面的一个xml文件配置来管理系统默认静态壁纸,live wallpaper则是通过intent机制向系统搜寻所有匹配Activity,所以,这里的默认值为null,而不是那个系统默认静态壁纸的地址,系统是读config.xml文件的设置,若为null才继续查找静态壁纸配置内容。
如何要设置的话可以这样修改设置:
<string name="default_wallpaper_component">com.android.wallpaper/.fall.FallWallpaper</string>这样重新make整个source code 动态壁纸改成了android自带落叶的壁纸了。
如果不设置上面的live wallpaper
那么Android 4.2的静态壁纸是在:
/frameworks/base/core/res/res/drawable下 命名为default_wallpaper.jpg;
如果要修改,替换图片,make即可。
根据资源图片设置壁纸:
增加权限:
<uses-permission android:name="android.permission.SET_WALLPAPER" />
InputStream stream = getResources().openRawResource(R.drawable.wallpaper); setWallpaper(stream);