Can anyone tell be how to exactly set the wallpaper on android without it being zoomed..at the moment no matter what resolution image i am using,it is just zooming it and setting as wallpaper..here is the code i am using
setWallpaper.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
WallpaperManager wManager;
try {
// Bitmap bitmap = ((BitmapDrawable)imageView1.getDrawable()).getBitmap();
wManager = WallpaperManager.getInstance(getApplicationContext());
wManager.setBitmap(bitmaptwo);
} catch (IOException e) {
e.printStackTrace();
}
}