当某些东西被弃用时,这意味着开发人员已经创造了一种更好的方式来做这件事,并且你不应该再使用旧的或弃用的方式。不推荐使用的东西将来会被删除。
在您的情况下,如果您有图像路径,则设置壁纸的正确方法如下:
is = new FileInputStream(new File(imagePath));
bis = new BufferedInputStream(is);
Bitmap bitmap = BitmapFactory.decodeStream(bis);
Bitmap useThisBitmap = Bitmap.createScaledBitmap(
bitmap, parent.getWidth(), parent.getHeight(), true);
bitmap.recycle();
if(imagePath!=null){
System.out.println("Hi I am try to open Bit map");
wallpaperManager = WallpaperManager.getInstance(this);
wallpaperDrawable = wallpaperManager.getDrawable();
wallpaperManager.setBitmap(useThisBitmap);
如果您有图像 URI,请使用以下内容:
wallpaperManager = WallpaperManager.getInstance(this);
wallpaperDrawable = wallpaperManager.getDrawable();
mImageView.setImageURI(imagepath);
从 Maidul 对这个问题的回答。