博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android 消息通知栏返回正在运行的Activity
阅读量:5322 次
发布时间:2019-06-14

本文共 879 字,大约阅读时间需要 2 分钟。

NotificationManager barmanager=(NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);Notification notice = new Notification(android.R.drawable.stat_notify_chat,                          "服务器发来信息了",System.currentTimeMillis());notice.flags=Notification.FLAG_AUTO_CANCEL;Intent appIntent = new Intent(Intent.ACTION_MAIN);appIntent.addCategory(Intent.CATEGORY_LAUNCHER);appIntent.setComponent(new ComponentName(this.getPackageName(),                        this.getPackageName() + "." + this.getLocalClassName()));appIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK|                   Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);//关键的一步,设置启动模式PendingIntent contentIntent =PendingIntent.getActivity(this, 0,appIntent,0);notice.setLatestEventInfo(this,"通知","信息:"+msg, contentIntent);barmanager.notify(STATUS_BAR_ID,notice);

转载于:https://www.cnblogs.com/vegetate/p/9997250.html

你可能感兴趣的文章
构造 HDOJ 5399 Too Simple
查看>>
php5.3.3安装mongo扩展
查看>>
ARM7探究
查看>>
js事件流及事件冒泡
查看>>
[bzoj4552]排序
查看>>
UNIX 网络编程第五章读书笔记
查看>>
HDU 1712 ACboy needs your help (分组背包模版题)
查看>>
gone invisiable的区别
查看>>
widerface数据库转voc2007数据集(python/matlab实现)
查看>>
TCP/IP网络编程系列之四(初级)
查看>>
Angular2 Hello World 之 2.0
查看>>
Facebook's architecture
查看>>
plotroc.m
查看>>
Linux单用户模式救援模式克隆虚拟机Linux相互登录
查看>>
NPM Scripts 2 -- rimraf copyfiles imagemin usemin htmlmin uglifyjs
查看>>
类 的重载(Overloads)与隐藏(Shadows)
查看>>
快速部署简单私有云CloudStack(上)
查看>>
状态模式
查看>>
django简介
查看>>
搜索动态库时查找目录的先后顺序
查看>>