Android设置桌面背景图片的实现方法
内容摘要
1.设置桌面背景图片的方法
复制代码 代码如下: Resources res=getResources(); BitmapDrawable bmpDraw=(BitmapDrawable)res.getDrawable(R.drawable.icon); Bitmap bmp=
复制代码 代码如下: Resources res=getResources(); BitmapDrawable bmpDraw=(BitmapDrawable)res.getDrawable(R.drawable.icon); Bitmap bmp=
文章正文
1.设置桌面背景图片的方法
Resources res=getResources();
BitmapDrawable bmpDraw=(BitmapDrawable)res.getDrawable(R.drawable.icon);
Bitmap bmp=bmpDraw.getBitmap();
try{
setWallpaper(bmp);
}catch(IOException e) {
e.printStackTrace();
}
2.在manifest中增加设置桌面的权限
<uses-permission android:name="android.permission.SET_WALLPAPER" />
复制代码 代码如下:
Resources res=getResources();
BitmapDrawable bmpDraw=(BitmapDrawable)res.getDrawable(R.drawable.icon);
Bitmap bmp=bmpDraw.getBitmap();
try{
setWallpaper(bmp);
}catch(IOException e) {
e.printStackTrace();
}
2.在manifest中增加设置桌面的权限
<uses-permission android:name="android.permission.SET_WALLPAPER" />
代码注释