Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the code to setting a wallpaper (android.permission.SET_WALLPAPER is needed)

// this is inside activity
WallpaperManager wallpaperManager = WallpaperManager.getInstance(this); 
wallpaperManager.setBitmap(bitmap);

My question is, how can I adjust this code in order to set the wallpaper to fit the screen both options:

  1. If image resolution is lower than the screen resolution - stretch it.
  2. If image resolution is higher than the screen resolution - scale it down.

Note: I have already tried to scale the bitmap to the screen's resolution before setting it as wallpaper, but it actually looked even worth than without scaling.

share|improve this question
maybe resize the bitmap to fit the screen? Bitmap resizedBitmap = Bitmap.createScaledBitmap(bitmap, newWidth, newHeight, true); – Tamir Scherzer Oct 1 '12 at 21:57
Tamir, I have already tried that, to scale the bitmap to the screen's resolution, but it looked even worth... It is really strange. – goryachev Oct 2 '12 at 13:53
Do you want the image to fill the screen or fit the image completely within the screen boundary? – Music Monkey Feb 19 at 15:42
I want it to fit the screen. Enlarge or reduce according to the image and screen resolution ratios – goryachev Feb 19 at 19:05

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.