NotificationManager: notifyAsUser: tag=null, id=6, user=UserHandle{0}

Android studio 使用   targetSdkVersion 28  在Android系统大于等于8.0的时候,通知不显示bug解决方法:

 

1、修改appcompat版本,如果是小于v27

改为

implementation 'com.android.support:appcompat-v7:27.1.1'

2、添加依赖

compile 'com.github.lovetuzitong:MultiImageSelector:1.2'

3、添加如果系统版本大于等于 8.0 设置NotificationChannel代码

NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {NotificationChannel channel = new NotificationChannel("com.tianxinyw.mapclient.liteapp",TAG,NotificationManager.IMPORTANCE_DEFAULT);mNotificationManager.createNotificationChannel(channel);}

4、builder添加通道setChannelId

Notification.Builder builder = new Notification.Builder(this);

 

builder.setChannelId("com.tianxinyw.mapclient.liteapp")

 

import static me.nereo.multi_image_selector.MultiImageSelectorFragment.TAG;

附:

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(APPlocation.getTotalContext());
NotificationManager mNotificationManager = (NotificationManager) APPlocation.getTotalContext().getSystemService(Context.NOTIFICATION_SERVICE);if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {NotificationChannel channel = new NotificationChannel("com.tianxin.service2thread",TAG,NotificationManager.IMPORTANCE_DEFAULT);mNotificationManager.createNotificationChannel(channel);}mBuilder.setChannelId("com.tianxin.service2thread");
mBuilder.setContentText("内容");
Intent notificationIntent = new Intent(this, TwoActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,notificationIntent, 0);
mBuilder.setContentIntent(pendingIntent);
mBuilder.setSmallIcon(R.mipmap.ic_launcher);
mNotificationManager.notify(1, mBuilder.build());

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/415059.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

工作193:vue.runtime.esm.js?2b0e:619 [Vue warn]: <transition-group> children must be keyed: <ElTag>

标题[Vue warn]: children must be keyed: 今天学习了VUE的列表排序过渡 碰见报错 报错之前代码为&#xff1a; <transition-group name"flip-list" tag"div"><van-cell v-for"(item,i) in list" v-bind:key"item.id">{…

prettier 配置参数说明

有必要使用prettier进行代码格式化。 1、常用的配置说明如下&#xff1a; {// 使能每一种语言默认格式化规则"[html]": {"editor.defaultFormatter": "esbenp.prettier-vscode"},"[css]": {"editor.defaultFormatter": &qu…

Oracle之例外(异常)

/* 例外 其实就是异常 处理发生的异常 java try{}catch(OutofBoundIndexException){}catch(Exception e){} 数据库对异常的处理 exception when 异常类型 then 处理语句 数据库异常分类 运行时异常 编…

Android2.2查看svn历史提交记录

一开始时是没有显示历史提交记录的&#xff0c;方法很简单 VCS--Subversion--ShowHistory,之后在下面的Version control就会显示“History-项目名”这个栏目&#xff0c;在这个栏目下面就可以查看提交的历史记录了 方法2&#xff1a; 对文件夹点右键&#xff0c;点击TortoiseS…

工作194:vue.runtime.esm.js?2b0e:619 [Vue warn]: Duplicate keys detected: ‘/system‘. This may cause an

错误如下 拿到公司一个小哥哥的代码&#xff0c;一来就报了一堆bug&#xff0c;吓得我先写一篇博客vue.runtime.esm.js?2b0e:619 [Vue warn]: Duplicate keys detected: /system. This may cause an update error.found in---> <Sidebar> at src/layout/components/S…

STM32 RS485 和串口 只能接收不能发送问题解决

串口 发送引脚要配置输出频率 否则配置不成功&#xff0c;导致只能接受不能发送转载于:https://www.cnblogs.com/yekongdexingxing/p/8078936.html

echarts我常用的参数总结

1、 progressive 表示ECharts渐进式渲染时每一帧绘制图形数量&#xff0c;设为 0 时不启用渐进式渲染&#xff0c;支持每个系列单独配置。 在图中有数千图形甚至好几万图形的时候&#xff0c;一下子把图形绘制出来&#xff0c;或者交互重绘的时候可能会造成界面的卡顿甚至假死…

Android 折叠头部监听,抽屉式动画

实现方法2&#xff1a;https://blog.csdn.net/meixi_android/article/details/84136375 1、自定义scrollview,监听上下滑动距离&#xff1a; public class ScrollListenerView extends ScrollView {private ScrollListener scrollViewListener null;public ScrollListenerVie…

工作195:解决key值不唯一的报错

<!--投放权限--><!--获取投放权限的数据--><el-form-item label"投放权限" :label-width"formLabelWidth"><el-selectv-model"form.publish_permission"multipleplaceholder"请选择投放权限"><el-option v…

POJ1459 Power Network —— 最大流

题目链接&#xff1a;https://vjudge.net/problem/POJ-1459 Power NetworkTime Limit: 2000MS Memory Limit: 32768KTotal Submissions: 29270 Accepted: 15191Description A power network consists of nodes (power stations, consumers and dispatchers) connected by power…

Python 异步操作文件 aiofiles

# 异步文件操作 # pip install aiofiles# 基本用法 import asyncio import aiofilesasync def wirte_demo():# 异步方式执行with操作,修改为 async withasync with aiofiles.open("text.txt","w",encoding"utf-8") as fp:await fp.write("h…

工作196:注意接收数据的格式

<!--获取投放权限的数据--><el-form-item label"投放权限" :label-width"formLabelWidth"><el-selectv-model"form.publish_permission"multipleplaceholder"请选择投放权限"><el-option v-for"(publish,in…

uvicorn 更改fastapi 运行host和port

在命令行输入uvicorn --help可以显示参数介绍&#xff0c;主要两个参数: --host TEXT Bind socket to this host. [default:127.0.0.1] --port INTEGER Bind socket to this port. [default: 8000]所以运行命令可以改成&#xff1a; uvicorn …

mysql问题处理积累

1.mysql errors:message from server: "Host xxx is blocked because of many connection errors; unblock 数据库连接抛了异常&#xff1a;null, message from server: "Host PC-20130201IBXI is blocked because of many connection errors; unblock with mysqlad…

Android PopupWindow使用,下拉式PopupWindow,底部式PopupWindow

1、实现方法1 仿微信盆友圈弹出点赞、评论 demo连接&#xff1a;android开发PopupWindow实现跟随试弹出框-Android文档类资源-CSDN下载 实现步骤 1、下载module并引入项目 引入module步骤&#xff1a;Android studio 导入module方法…

工作197:判断对象里面是否有0和1

<el-form-item v-if"property.includes(0)" prop"business_module" label"所属栏目" :label-width"formLabelWidth"><!--注意用户的返回值--><el-select v-model"form.business_module" placeholder"…

Python __call__()方法

Python 类中一个非常特殊的实例方法&#xff0c;即 call()。该方法的功能类似于在类中重载 () 运算符&#xff0c;使得类实例对象可以像调用普通函数那样&#xff0c;以“对象名()”的形式使用。 举个例子&#xff1a; class CLanguage:# 定义__call__方法def __call__(self,n…

Android 微信登录

/1、首先你得到微信.开放平台申请开发权限&#xff1a;https://open.weixin.qq.com/ 申请通过效果如下即可 2、其次&#xff0c;阅读开发文档&#xff1a; https://open.weixin.qq.com/cgi-bin/showdocument?actiondir_list&tresource/res_list&verify1&idopen1…

解决ubuntu16.04 qt5.9.1无法输入中文

1. 安装 fcitx-frontend-qt5 sudo apt-get install fcitx-frontend-qt5 2. 确认该路径下存在的文件 /usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libfcitxplatforminputcontextplugin.so 3. 将libfcitxplatforminputcontextplugin.so 复制到以下两个路径下&…

工作198:无法选中的状态一定要绑定在select上面

<el-form-item prop"department_id" label"所属部门" :label-width"formLabelWidth"><select-form change"DepartmentList" v-model"form.department_id" /></el-form-item><el-form-item v-show&quo…