i am creating a gallery app , my first app and this is my code
Bitmap bmd = BitmapFactory.decodeStream(is);
try{
getApplicationContext().setWallpaper(bmd);
}catch(IOException e){
e.printStackTrace();
}
The above code sets wallpaper But the wallpaper gets cropped or zoomed after it got set !! Is there any modification i can do in the above code so that i can set wallpaper without zooming or cropping when it is set !!!!
Plzzzz help me out !! Thanks in advance :-)