Android:如何设置通知的辅助图标?

时间:2015-02-09 11:46:42

标签: android notifications

所以,任何人都知道如何在通知中设置辅助图标:

enter image description here

如何按doc设置小图标和大图标,但我找不到如何设置辅助图标?

编辑:回答完这个问题之后,我明白了棒棒糖在哪里移动了二级[小图标]:

enter image description here

1 个答案:

答案 0 :(得分:3)

你可以这样做。

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this).setSmallIcon(R.drawable.notification_logo).setContentTitle(title).setContentText(message).setAutoCancel(true);

setSmallIcon正是您要找的