NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_launcher)
.setLargeIcon(b)
.setContentTitle("this a message!")
.setContentText("Hello world");
我可以只使用setLagreIcon()或任何其他替代解决方案吗?
答案 0 :(得分:0)
Notification对象必须包含以下内容:
- 由setSmallIcon()
设置的小图标- 标题,由setContentTitle()
设置- 详细文本,由setContentText()
设置
所以不,这是不可能的。
编辑:似乎解释了一个非常不安全且不推荐的方法here。