按Notification 回到正在运行的activity

简介: 写好Notification , 按Home回到主界面,再按通知栏的消息(Notification), 回到退出之前正在运行的Acticity .     在代码中加入两行代码作为声名即可。 :                                  Intent notificationIntent = new Intent(this,this.

  写好Notification , 按Home回到主界面,再按通知栏的消息(Notification), 回到退出之前正在运行的Acticity .

    在代码中加入两行代码作为声名即可。 :

                 
                 Intent notificationIntent = new Intent(this,this.getClass()); 

                /* */
                notificationIntent.setAction(Intent.ACTION_MAIN);
                notificationIntent.addCategory(Intent.CATEGORY_LAUNCHER);
                 

                PendingIntent contentIntent = PendingIntent.getActivity(this.context, 0, notificationIntent,PendingIntent.FLAG_UPDATE_CURRENT);
                notification.setLatestEventInfo(context, title, text, contentIntent);        
                mNotificationManager.notify(NOTIFICATION_SERVICE_ID,notification);

 

 

 

目录
相关文章
|
数据采集 安全 网络协议
信息安全管理与评估赛题第2套(上)
一共打算发三套样题 后边给大家发师傅们的学习笔记以及对一些题的理解
482 0
|
消息中间件 安全 Java
Java 中的线程与进程之区别
【8月更文挑战第22天】
274 0
|
JavaScript 前端开发
document.write和innerHTML、innerText 的区别
document.write和innerHTML、innerText 的区别
282 5
|
数据库 开发工具 开发者
【Python】已解决:You have 18 unapplied migration(s). Your project may not work properly until you apply t
【Python】已解决:You have 18 unapplied migration(s). Your project may not work properly until you apply t
723 0
|
存储 XML 监控
启动优化 · 基础论 · 浅析Android启动优化
启动优化 · 基础论 · 浅析Android启动优化
768 0
启动优化 · 基础论 · 浅析Android启动优化
|
存储 Ubuntu Shell
mac docker镜像在哪个文件夹
【2月更文挑战第22天】
1990 0
|
缓存 Go
深度探索 Go 对象模型(三)
深度探索 Go 对象模型(三)
161 0
|
存储 安全 网络协议
探寻未知:揭秘子域名收集的秘密艺术
探寻未知:揭秘子域名收集的秘密艺术
331 0
|
域名解析 Ubuntu 物联网
服务器使用
服务器使用
|
SQL 存储 程序员
SQL Server——SQL Server触发器及事务和锁
SQL Server——SQL Server触发器及事务和锁
593 1