我想制作一个用户手动无法取消的通知,就像谷歌导航通知一样。我不知道该怎么做。 请帮助。
以下是我尝试过的代码。
mBuilder.setSmallIcon(R.mipmap.ic_launcher)
.setOngoing(true)
.setContentIntent(pendIntent)
.setContent(mRemoteViews)
.setPriority(0)
.setTicker(ticker);
感谢。
答案 0 :(得分:1)
尝试添加此
mBuilder.setOngoing(true)
其他选项是使用intentService或后台服务来为您发出通知,而不是应用程序上下文。