0
私は異なったimageviewsを含むviewFlipperを使用しているアンドロイドの壁紙アプリを開発しています。私はviewFlipper上でスライドアニメーションを持っている、私は壁紙としてviewflipperに示されている現在の画像を設定したい。viewFlipperのimageViewにイメージを壁紙として設定する方法は?
私は異なったimageviewsを含む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();
}
}