小编典典

将可绘制资源图像转换为位图

all

我正在尝试使用Notification.Builder.setLargeIcon(bitmap)需要位图图像的方法。我的可绘制文件夹中有我想要使用的图像,那么如何将其转换为位图?


阅读 60

收藏
2022-07-31

共1个答案

小编典典

你可能是说Notification.Builder.setLargeIcon(Bitmap),对吧?:)

Bitmap largeIcon = BitmapFactory.decodeResource(getResources(), R.drawable.large_icon);
notBuilder.setLargeIcon(largeIcon);

这是将资源图像转换为AndroidBitmap的好方法。

2022-07-31