如何在不使用小的时候使用NotificationCompat时只显示大图标

时间:2015-12-11 07:32:51

标签: android

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this)
            .setSmallIcon(R.drawable.ic_launcher)
            .setLargeIcon(b)
            .setContentTitle("this a message!")
            .setContentText("Hello world");

我可以只使用setLagreIcon()或任何其他替代解决方案吗?

1 个答案:

答案 0 :(得分:0)

来自documentation

  

Notification对象必须包含以下内容:

     
      
  • 由setSmallIcon()
  • 设置的小图标   
  • 标题,由setContentTitle()
  • 设置   
  • 详细文本,由setContentText()
  • 设置   

所以不,这是不可能的。

编辑:似乎解释了一个非常不安全且不推荐的方法here