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:
- If image resolution is lower than the screen resolution - stretch it.
- 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.