-
Android中利用App实现消息推送机制的代码实例
1.消息推送机制
服务器器端需要变被动为主动,通知客户一些开发商认为重要的信息,无论应用程序是否正在运行或者关闭。
我想到了一句话:don't call me,i will call you!
qq今天在右下角弹出了一个对话框:"奥巴马宣布本拉登挂了...",正是如此。
自作聪明,就会带点小聪明,有人喜欢就有人讨厌。
2.独立进程
无论程序是否正在运行,我们都要能通知到客户,我们需要一个独立进程的后台服务。
我们需要一个独立进程的后台服务。
在androidmanifest.xml中注册service时,有一个android:process属性,如果这个属性以"."开头,则为此服务开启一个
全局的独立进程,如果以":"开头则为此服务开启一个为此应用私有的独立进程。举个具体的例子吧,我们新建了一个
application,创建了主进程com.cnblogs.tianxia,那么:
view sourceprint?1 <!--下面会创建一个全局的com.cnblogs.tianxia.message的独立进程-->
2 <service android:name=".service.messageservice" android:label="消息推送" android:process=".message"></service>
3 <!--或者-->
4 <!--下面会创建一个应用私有的com.cnblogs.tianxia:message的独立进程-->
5 <service android:name=".service.messageservice" android:label="消息推送" android:process=":message"></service>
我们没必要建立一个全局的,本文选择第二种方案,创建一个当前应用私有的独立进程。
3.通知用户和点击查看
view sourceprint?01 public class messageservice extends service {
02
03 //获取消息线程
04 private messagethread messagethread = null;
05
06 //点击查看
07 private intent messageintent = null;
08 private pendingintent messagependingintent = null;
09
10 //通知栏消息
11 private int messagenotificationid = 1000;
12 private notification messagenotification = null;
13 private notificationmanager messagenotificatiomanager = null;
14
15 public ibinder onbind(intent intent) {
16 return null;
17 }
18
19 @override
20 public int onstartcommand(intent intent, int flags, int startid) {
21 //初始化
22 messagenotification = new notification();
23 messagenotification.icon = r.drawable.icon;
24 messagenotification.tickertext = "新消息";
25 messagenotification.defaults = notification.default_sound;
26 messagenotificatiomanager = (notificationmanager)getsystemservice(context.notification_service);
27
28 messageintent = new intent(this, messageactivity.class);
29 messagependingintent = pendingintent.getactivity(this,0,messageintent,0);
30
31 //开启线程
32 messagethread = new messagethread();
33 messagethread.isrunning = true;
34 messagethread.start();
35
36 return super.onstartcommand(intent, flags, startid);
37 }
38
39 /**
40 * 从服务器端获取消息
41 *
42 */
43 class messagethread extends thread{
44 //运行状态,www.3ppt.com下一步骤有大用
45 public boolean isrunning = true;
46 public void run() {
47 while(isrunning){
48 try {
49 //休息10分钟
50 thread.sleep(600000);
51 //获取服务器消息
52 string servermessage = getservermessage();
53 if(servermessage!=null&&!"".equals(servermessage)){
54 //更新通知栏
55 messagenotification.setlatesteventinfo(messageservice.this,"新消息","奥巴马宣布,本拉
登兄弟挂了!"+servermessage,messagependingintent);
56 messagenotificatiomanager.notify(messagenotificationid, messagenotification);
57 //每次通知完,通知id递增一下,避免消息覆盖掉
58 messagenotificationid++;
59 }
60 } catch (interruptedexception e) {
61 e.printstacktrace();
62 }
63 }
64 }
65 }
66
67 /**
68 * 这里以此方法为服务器demo,仅作示例
69 * @return 返回服务器要推送的消息,否则如果为空的话,不推送
70 */
71 public string getservermessage(){
72 return "yes!";
73 }
74 }
其中messageactivity是点击跳转的activity,负责处理查看详细信息。
我们在其他activity中调用一下:
view sourceprint?1 boolean ismessagepush = true;//不开启就设置为false;
2 ...
3 if(ismessagepush){
4 startservice(new intent(this, messageservice.class))
5 };
运行一下:
4.停止服务
view sourceprint?1 stopservice(new intent(myactivity.this,messageservice.class));
2 setmessagepush(false);//设置配置文件或数据库中flag为false
运行一下,停止服务后,却出乎意料的并没有停下来,怎么回事?是不是代码写错了?
代码没有错,错在我们停止了服务,却没有停止进程,退出线程。
5.退出线程
实践证明,thread的stop()方法并不可靠。但是我们有其他的办法。
在代码面前,程序员就是上帝。
退出线程有两种方法。
第一种方法,强制退出。
view sourceprint?1 //杀死该线程所在的进程,自然就退出了
2 system.exit(0);
第二种方法,设置isrunning为false。
view sourceprint?1 //前面说到了isrunning这个标志,设置为false后,线程的执行就从while循环中跳出来了,然后自然结束
掉了
2 messagethread.isrunning = false;
综合一下,我们在messageservice中重载ondestroy()方法如下:
view sourceprint?1 @override
2 public void ondestroy() {
3 system.exit(0);
4 //或者,二选一,推荐使用system.exit(0),这样进程退出的更干净
5 //messagethread.isrunning = false;
6 super.ondestroy();
7 }
分享到:
相关推荐
以下是对Android中利用App实现消息推送机制的详细解析: 1. **消息推送机制原理**: 消息推送的核心思想是让服务器主动向客户端发送数据,而不是客户端定期请求。这种机制适用于实时性要求较高的场景,如社交应用...
1.消息推送机制 服务器器端需要变被动为主动,通知客户一些开发商认为重要的信息,无论应用程序是否正在运行或者关闭。 我想到了一句话:don’t call me,i will call you! qq今天在右下角弹出了一个对话框:”奥巴马...
在Android平台上,利用WebSocket实现消息推送,可以让应用程序实时接收服务器端发送的数据,例如社交应用的新消息通知、股票市场的实时更新等。 一、WebSocket简介 WebSocket协议是在HTTP的基础上建立的持久连接...
- **通知与推送**:利用Firebase Cloud Messaging (FCM) 实现消息推送。 3. **Android实例分析** 深入学习这些实例,开发者可以掌握如何组织项目结构、创建Activity、处理用户事件、响应生命周期变化、设计自定义...
在移动应用开发中,消息推送是一项关键功能,它能让开发者...总的来说,个推消息推送实例代码工具类为开发者提供了一个快速实现推送功能的起点,但要真正发挥推送的效用,还需要结合业务场景,进行细致的设计和优化。
在Android开发中,有时我们需要实现实时的消息推送功能,这时Apache ActiveMQ就能派上用场。ActiveMQ是一款开源的消息中间件,它遵循Java Message Service (JMS) 规范,支持多种协议,如OpenWire、AMQP、STOMP等,...
在Android应用开发中,消息推送是一项...通过以上步骤和方法,开发者可以顺利地在Android应用中集成个推推送服务,实现高效的消息推送功能。同时,不断学习和研究个推的更多高级特性,能进一步提升用户体验和应用价值。
在这个“C#+Android 极光推送实例”中,我们将探讨如何利用C#后端与极光推送API集成,以便向Android客户端发送推送通知。 首先,你需要在极光推送官网注册并创建一个应用,获取到特定于你应用的ApiKey和...
在Android开发中,消息推送是一项重要的功能,它允许应用程序在后台向用户发送通知或更新,即使应用并未在前台运行。本教程将深入讲解Android短链接消息推送,这对于开发者尤其是初学者来说,是一条快速理解并掌握该...
在这个"C#进行友盟消息推送post实例"中,我们将探讨如何使用C#语言结合友盟API来实现消息推送功能。 首先,我们需要了解友盟的消息推送服务。友盟的消息推送允许开发者向特定的Android或iOS设备发送通知或自定义...
极光推送(JPush)是面向开发者提供的一种高效、稳定的消息推送服务,广泛应用于移动应用中,能够帮助开发者实现从Web端向Android和iOS设备发送消息。本项目是一个基于Java和Maven构建的Web版Demo,旨在展示如何利用...
在APP更新实例中,我们需要在服务器端存储当前最新版本的`versionCode`,以便与客户端的版本进行比较。 2. **版本号对比**: 客户端在启动应用时,通过网络请求获取服务器上的最新`versionCode`。然后与本地应用的...
在移动开发领域,尤其是Android App开发中,消息推送是提升用户体验、增强用户粘性的重要手段,通常用于通知用户新消息、更新或者活动信息。 首先,我们需要了解`Notification`在Android系统中的角色。`...
在Android应用开发中,推送通知是一项关键功能,它能让用户即使在不打开应用的情况下也能收到信息。然而,当用户在app完全关闭的状态下点击推送通知时,可能会遇到应用没有正确初始化的问题,导致通知的处理出现问题...
在本实例中,我们关注的是"极光网络短信推送app端",这是一个使用极光推送服务实现网络短信推送功能的应用程序开发案例。 极光推送(JPush)是由极光公司提供的专业推送服务,它为企业和开发者提供了稳定高效的...
"Android 使用 JobScheduler 定期推送本地通知实例代码" 本篇文章主要介绍了 Android 使用 JobScheduler 定期推送本地通知实例代码,具有一定的参考价值。下面将详细地介绍 JobScheduler 的概念、使用方法和示例...
在Brno Rentals App中,开发者可能使用了Material Design指南来构建界面,利用Android Studio的布局编辑器进行设计,如使用RecyclerView展示房源列表,SwipeRefreshLayout实现刷新操作,以及BottomNavigationView...
这些实例源代码提供了宝贵的实践经验和学习素材,帮助我们深入理解Android应用程序的设计原理和实现方式。在这个压缩包中,包含了七个不同类型的Android应用实例,每个实例都代表了Android开发的一个重要方面。 1. ...