有没有人知道我们如何在通知中和时间戳(何时)之前在应用程序名称右侧添加文本?
答案 0 :(得分:7)
您可以将消息传递给String。
Notification noti = new Notification.Builder(mContext)
.setContentTitle(AppName)
.setContentText(message)
.setSmallIcon(R.drawable.logo)
.setSubText(senders_mail)
.build();