Android:即使应用程序从内存中清除后,如何使通知可见

时间:2017-10-05 04:43:59

标签: java android push-notification android-notifications

我想制作一个用户手动无法取消的通知,就像谷歌导航通知一样。我不知道该怎么做。 请帮助。

以下是我尝试过的代码。

 mBuilder.setSmallIcon(R.mipmap.ic_launcher)
       .setOngoing(true)
       .setContentIntent(pendIntent)
       .setContent(mRemoteViews)
       .setPriority(0) 
       .setTicker(ticker);

感谢。

1 个答案:

答案 0 :(得分:1)

尝试添加此

mBuilder.setOngoing(true)

其他选项是使用intentService或后台服务来为您发出通知,而不是应用程序上下文。