概述
在调用startForeground之后马上调用
stopForeground(true);
完整的就是这样:
将这两句代码放到onStartCommand中
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
//构建notification
startForeground(1, new NotificationCompat.Builder(this,
CHANNEL_ONE_ID).build());
stopForeground(true);
//最后调用父类的onStartCommand
return super.onStartCommand(intent, flags, startId);
}
最后
以上就是单身秋天为你收集整理的startForeground如何去掉通知栏的全部内容,希望文章能够帮你解决startForeground如何去掉通知栏所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复