I am trying to use the Notification.Builder.setLargeIcon(bitmap) that takes a bitmap image. I have the image I want to use in my drawable folder so how do I convert that to bitmap?
I am trying to use the Notification.Builder.setLargeIcon(bitmap) that takes a bitmap image. I have
Share
You probably mean
Notification.Builder.setLargeIcon(Bitmap), right? 🙂This is a great method of converting resource images into Android
Bitmaps.