Set Drawable or Bitmap as icon In Notification in Android

后端 未结 4 1815
春和景丽
春和景丽 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:44

    Better option get application icon

     Drawable drawable=getApplicationInfo().loadIcon(getPackageManager());
     Bitmap bitmap = ((BitmapDrawable)drawable).getBitmap();
    
    
    
    .setSmallIcon(getApplicationInfo().icon)
    .setLargeIcon(bitmap)
    

提交回复
热议问题