Can I override default push notification icon in android from app icon to custom icon?

后端 未结 6 948
遥遥无期
遥遥无期 2021-02-12 16:16

Can I override default push notification icon in android from app icon to custom icon?

I am using default firebase implementation to display notification in system tray,

6条回答
  •  自闭症患者
    2021-02-12 16:38

    You can do like this:

    int icon=R.drwable.icon; //Add your icon name here
    NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
    builder.setSmallIcon(icon);
    

提交回复
热议问题