设置桌面壁纸代码

其实就一句,不过前面需要先获取bitmap对象。

        Resources res=getResources();  
BitmapDrawable bmpDraw=(BitmapDrawable)res.getDrawable(R.id.abc);
Bitmap bmp=bmpDraw.getBitmap();
try{
setWallpaper(bmp);
}catch(IOException e) {
e.printStackTrace();
}

至于如何设置待机壁纸,暂时还不太清楚~!

posted on 2013-03-07 16:23  wzc0066  阅读(812)  评论(0编辑  收藏  举报