I want to convert Android Icon to Bitmap or any other format that can be saved in the database.
Please someone assist.
Below my trying that is not working BitmapFactory.decodeResource(resources, Requires Integer here and I provided Icon that causes it is failing).
override fun onNotificationPosted(sbn: StatusBarNotification?) {
super.onNotificationPosted(sbn)
var icon : Icon? = sbn?.notification?.getLargeIcon()
var bitmap: Bitmap = BitmapFactory.decodeResource(resources,icon)
}
Any way of converting Icon to another type.
New to code Learner.