0
我正在開發一款安卓壁紙應用,其中我使用了一個包含不同圖像視圖的viewFlipper。我在viewFlipper上有滑動動畫,我想將viewflipper中顯示的當前圖像設置爲壁紙。如何將viewFlipper的imageView中的圖像設置爲壁紙?
我正在開發一款安卓壁紙應用,其中我使用了一個包含不同圖像視圖的viewFlipper。我在viewFlipper上有滑動動畫,我想將viewflipper中顯示的當前圖像設置爲壁紙。如何將viewFlipper的imageView中的圖像設置爲壁紙?
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();
}
}