2016-07-09 5 views

答えて

0
you should get the image and make it into bitmap at first. Once you have the bitmap of that image use the following : 
WallpaperManager wallpaper = WallpaperManager.getInstance(getApplicationContext()); 
try{ 
    wallpaper.setBitmap(yourBitmap); 
catch(IOException e){ 
    e.printStackTrace(); 
    } 
} 
関連する問題