我使用以下代码获取当前壁纸:
final WallpaperManager wallpaperManager = WallpaperManager.getInstance(this);
final Drawable wallpaperDrawable = wallpaperManager.getDrawable();
如何从中创建位图?
就像我从 res 文件夹创建位图时一样,我使用它
Resources res = getApplicationContext().getResources();
b = BitmapFactory.decodeResource(res, R.drawable.wall);
我应该使用什么代码将当前壁纸放入位图中,以便可以在画布上绘制并将其用作动态壁纸背景?