Öncelikle Resme basılı tutunca açılan menü olduğunu o menüden butona basınca işlem yaptığını sayarak anlatıyorum kodları
[code]
//manuel olarak verdiğini varsayarak gösteriyorum
is = new FileInputStream(new File(imagePath));
bis = new BufferedInputStream(is);
Bitmap bitmap = BitmapFactory.decodeStream(bis);
Bitmap useThisBitmap = Bitmap.createScaledBitmap( bitmap, parent.getWidth(), parent.getHeight(), true); bitmap.recycle();
if(imagePath!=null){
wallpaperManager = WallpaperManager.getInstance(this);
wallpaperDrawable = wallpaperManager.getDrawable();
wallpaperManager.setBitmap(useThisBitmap);
}
Toast.makeText(this,
"Arka Plan Değişti", Toast.LENGTH_SHORT)
.show();
//<uses-permission android:name="android.permission.SET_WALLPAPER" > bunuda manifest ekle
[/code]