How to set bitmap as notification icon in Android

前端 未结 4 1736
囚心锁ツ
囚心锁ツ 2020-12-19 15:49

Hello I am looking for the way to set the bitmap which are not in res directory. Actually I am getting that icon from the URL and want to set it in the notifica

4条回答
  •  旧巷少年郎
    2020-12-19 16:26

    Already answered here: https://stackoverflow.com/a/16055373/1071594

    Summary: It's not possible to set a custom small icon, but from API level 11 you can use setLargeIcon() after you have downloaded your image and converted it to a Bitmap.

    [edit] There is another solution: If you create a completely custom notification with its own view, you could put anything inside that view, including downloaded images.

提交回复
热议问题