how to fit the whole image on screen as wallpaper

前端 未结 2 2026
故里飘歌
故里飘歌 2021-01-13 11:24

I am developing an app which picks an image from the gallery and then sets that image as the wallpaper. But here problem is that only part of image is set as wallpaper not t

2条回答
  •  萌比男神i
    2021-01-13 12:25

    Set wallpaper size to your image size:

    WallpaperManager wm = (WallpaperManager) getSystemService(WALLPAPER_SERVICE);
    wm.setBitmap(bitmap);
    wm.suggestDesiredDimensions(w, h);
    

    and remember to add permissions:

    
    
    

提交回复
热议问题