我是靠谱客的博主 单身秋天,最近开发中收集的这篇文章主要介绍startForeground如何去掉通知栏,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在调用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如何去掉通知栏所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部