当前位置: 编程技术>移动开发
Android设置桌面背景图片的实现方法
来源: 互联网 发布时间:2014-10-17
本文导语: 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中增加设置桌面的...