Android 更换桌面壁纸 代码

来源:互联网 发布:网络棋牌百人牛牛骗局 编辑:程序博客网 时间:2024/05/01 14:18

setWallpaper 更换桌面壁纸

 

setWallpaper 更换桌面壁纸 - 云代码 http://yuncode.net/code/c_50474dfaa68564

 

 

protected static InputStream is;Resources resources = getBaseContext().getResources();is = resources.openRawResource ( mImageAdapter01.myImageIds[position] );// 可换成任意图片资源try{/* 更换桌面背景 */setWallpaper ( is );/* 用Toast来显示桌布已更换 */Toast.makeText (    Test.this,    getString ( R.string.my_gallery_text_pre ),    Toast.LENGTH_SHORT ).show();}catch ( Exception e ){e.printStackTrace();}@Overridepublic void setWallpaper ( InputStream data ) throws IOException{// TODO Auto-generated method stubsuper.setWallpaper ( data );}

原创粉丝点击