不赞成使用一种方法意味着什么,如何解决导致的错误?

不赞成使用一种方法意味着什么,如何解决导致的错误?,第1张

不赞成使用一种方法意味着什么,如何解决导致的错误?

不推荐使用某些东西时,这意味着开发人员已经创建了一种更好的方式来执行此 *** 作,并且您不再应该使用旧的或不推荐使用的方式。不推荐使用的东西将来会被移除。

您的情况下,如果有图像路径,则设置墙纸的正确方法如下:

is = new FileInputStream(new File(imagePath));bis = new BufferedInputStream(is);Bitmap bitmap = BitmapFactory.depreStream(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);


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5562097.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存