我正在尝试使用Notification.Builder.setLargeIcon(bitmap)需要位图图像的方法。我的可绘制文件夹中有我想要使用的图像,那么如何将其转换为位图?
Notification.Builder.setLargeIcon(bitmap)
你可能是说Notification.Builder.setLargeIcon(Bitmap),对吧?:)
Notification.Builder.setLargeIcon(Bitmap)
Bitmap largeIcon = BitmapFactory.decodeResource(getResources(), R.drawable.large_icon); notBuilder.setLargeIcon(largeIcon);
这是将资源图像转换为AndroidBitmap的好方法。
Bitmap