从图库中设置 phone 背景图片

set phone background image from gallery

我想从条样中打开图像,然后将该图像设置为 phone 背景。我可以打开图库,但在将该图像设置为 phone 背景时出现错误。

从 imageUri 中检索图像并将其保存为位图对象。确保您在 Android 清单中拥有设置墙纸权限。

Bitmap image =MediaStore.Images.Media.getBitmap(getContentResolver(), imageUri);

WallpaperManager myWallpaperManager = WallpaperManager.getInstance(getApplicationContext());
myWallpaperManager.setBitmap(bitmap);