Set Drawable or Bitmap as icon In Notification in Android

后端 未结 4 1793
春和景丽
春和景丽 2020-12-06 04:58

I download a image from server as bitmap and convert it to drawable now i want to use this drawable as notification icon. But i am unable to do that. here is my code:

<
4条回答
  •  有刺的猬
    2020-12-06 05:43

    you can try using this method

     builder.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher));
    

    http://javatechig.com/android/android-notification-example-using-notificationcompat

提交回复
热议问题