这篇文章是android开发人员的必备知识。
1.轮询服务器
一般的应用,定时通知消息可以采用轮询的方法从服务器拿取消息,当然实时消息通知的话,建议采用推送服务。
其中需要注意轮询的频率设置,要在需求和性能中平衡。
2.独立进程
无论程序是否正在运行,我们都要能通知到客户,我们需要一个独立进程的后台服务。
我们需要一个独立进程的后台服务。
在AndroidManifest.xml中注册Service时,有一个android:process属性,如果这个属性以"."开头,则为此服务开启一个全局的独立进程,如果以":"开头则为此服务开启一个为此应用私有的独立进程。举个具体的例子吧,我们新建了一个 Application,创建了主进程com.cnblogs.tianxia,那么:
1
2
3
4
5
|
<!--下面会创建一个全局的com.cnblogs.tianxia.message的独立进程--> < service android:name=".service.MessageService" android:label="消息推送" android:process=".message" />
<!--或者--> <!--下面会创建一个应用私有的com.cnblogs.tianxia:message的独立进程--> < service android:name=".service.MessageService" android:label="消息推送" android:process=":message" />
|
我们没必要建立一个全局的,本文选择第二种方案,创建一个当前应用私有的独立进程。
3.通知用户和点击查看
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
public class MessageService extends Service {
//获取消息线程
private MessageThread messageThread = null ;
//点击查看
private Intent messageIntent = null ;
private PendingIntent messagePendingIntent = null ;
//通知栏消息
private int messageNotificationID = 1000 ;
private Notification messageNotification = null ;
private NotificationManager messageNotificatioManager = null ;
public IBinder onBind(Intent intent) {
return null ;
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
//初始化
messageNotification = new Notification();
messageNotification.icon = R.drawable.icon;
messageNotification.tickerText = "新消息" ;
messageNotification.defaults = Notification.DEFAULT_SOUND;
messageNotificatioManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
messageIntent = new Intent( this , MessageActivity. class );
messagePendingIntent = PendingIntent.getActivity( this , 0 ,messageIntent, 0 );
//开启线程
messageThread = new MessageThread();
messageThread.isRunning = true ;
messageThread.start();
return super .onStartCommand(intent, flags, startId);
}
/**
* 从服务器端获取消息
*
*/
class MessageThread extends Thread{
//运行状态,下一步骤有大用
public boolean isRunning = true ;
public void run() {
while (isRunning){
try {
//休息10分钟
Thread.sleep( 600000 );
//获取服务器消息
String serverMessage = getServerMessage();
if (serverMessage!= null &&! "" .equals(serverMessage)){
//更新通知栏
messageNotification.setLatestEventInfo(MessageService. this ,
"新消息" , "奥巴马宣布,本拉登兄弟挂了!" +serverMessage,messagePendingIntent);
messageNotificatioManager.notify(messageNotificationID, messageNotification);
//每次通知完,通知ID递增一下,避免消息覆盖掉
messageNotificationID++;
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
/**
* 这里以此方法为服务器Demo,仅作示例
* @return 返回服务器要推送的消息,否则如果为空的话,不推送
*/
public String getServerMessage(){
return "YES!" ;
}
} |
其中MessageActivity是点击跳转的activity,负责处理查看详细信息。
我们在其他Activity中调用一下:
1
2
3
4
5
|
boolean isMessagePush = true ; //不开启就设置为false;
... if (isMessagePush){
startService( new Intent( this , MessageService. class ))
}; |
运行一下:
4.停止服务
1
2
|
stopService( new Intent(MyActivity. this ,MessageService. class ));
setMessagePush( false ); //设置配置文件或数据库中flag为false
|
运行一下,停止服务后,却出乎意料的并没有停下来,怎么回事?是不是代码写错了?
代码没有错,错在我们停止了服务,却没有停止进程,退出线程。
5.退出线程
实践证明,Thread的stop()方法并不可靠。但是我们有其他的办法。
在代码面前,程序员就是上帝。
退出线程有两种方法。
第一种方法,强制退出。
1
2
|
//杀死该线程所在的进程,自然就退出了 System.exit( 0 );
|
第二种方法,设置isRunning为false。
1
2
|
//前面说到了isRunning这个标志,设置为false后,线程的执行就从while循环中跳出来了,然后自然结束掉了 messageThread.isRunning = false ;
|
综合一下,我们在MessageService中重载onDestroy()方法如下:
1
2
3
4
5
6
7
|
@Override public void onDestroy() {
System.exit( 0 );
//或者,二选一,推荐使用System.exit(0),这样进程退出的更干净
//messageThread.isRunning = false;
super .onDestroy();
} |
好了,现在无论是手动停止,还是从任务管理器中强制停止Service,消息服务和消息线程都能正常的停止和退出了。
Android学习系列(7)--App轮询服务器消息
Android学习系列(7)--App轮询服务器消息的更多相关文章
-
Android学习系列(37)--App调试内存泄露之Context篇(下)
接着<Android学习系列(36)--App调试内存泄露之Context篇(上)>继续分析. 5. AsyncTask对象 我N年前去盛大面过一次试,当时面试官极力推荐我使用AsyncT ...
-
Android学习系列(15)--App列表之游标ListView(索引ListView)
游标ListView,提供索引标签,使用户能够快速定位列表项. 也可以叫索引ListView,有的人称也为Tweaked ListView,可能更形象些吧. 一看图啥都懂了: 1. ...
-
Android学习系列(23)--App主界面实现
在上篇文章<Android学习系列(22)--App主界面比较>中我们浅略的分析了几个主界面布局,选了一个最大众化的经典布局.今天我们就这个经典布局,用代码具体的实现它. 1.预览图先看下 ...
-
Android学习系列(17)--App列表之圆角ListView(续)
http://www.cnblogs.com/qianxudetianxia/archive/2011/09/19/2068760.html 本来这篇文章想并到上篇Android学习系列(16)- ...
-
Android学习系列(18)--App工程结构搭建
本文算是一篇漫谈,谈一谈关于Android开发中工程初始化的时候如何在初期我们就能搭建一个好的架构. 关于android架构,因为手机的限制,目前我觉得也确实没什么大谈特谈的,但是从开发的 ...
-
Android学习系列(11)--App列表之拖拽ListView(下)
接着上篇Android学习系列(10)--App列表之拖拽ListView(上)我们继续实现ListView的拖拽效果. 7.重写onTouchEvent()方法. 在这个方法中我们主要是处理 ...
-
Android学习系列(10)--App列表之拖拽ListView(上)
研究了很久的拖拽ListView的实现,受益良多,特此与尔共飨. 鉴于这部分内容网上的资料少而简陋,而具体的实现过程或许对大家才有帮助,为了详尽而不失真,我们一步一步分析,分成两篇文章. ...
-
Android学习系列(3)--App自动更新之自定义进度视图和内部存储
友好的视觉感知和稳定的不出错表现,来自于我们追求美感和考虑的全面性,博客园从技术的角度,一直我都很欣赏.这篇文章是android开发人员的必备知识,是我特别为大家整理和总结的,不求完美,但是有用. 这 ...
-
Android学习系列(7)--App消息通知机制
有人说,程序员很安静,但我不完全同意,程序员的聒噪,是藏在代码后面,是藏在程序后面.这篇文章是Android开发人员的必备知识,是我特别为大家整理和总结的,不求完美,但是有用. 1.消息推送机制 ...
随机推荐
-
Qt里获取目录的一个另类方法
如果有一个文件的全路径文件名, 想获取它的路径的话, qt里我没找到比较好的办法, 都是cleanPath后, 再用QString的find, left这种函数来处理. 今天又在搞这种问题的时候, 看 ...
-
JS回车键处理
HTML <input type="text" id="keyword" name="keyword" autocomplete=&q ...
-
asp.net 使用IHttpModule 做权限检查 登录超时检查(转)
IHttpModule 权限 检查 登录超时检查 这样就不需要每个页面都做一次检查 也不需要继承任何父类. using System;using System.Collections.Generic; ...
-
Fast R-CNN论文理解
论文地址:https://arxiv.org/pdf/1504.08083.pdf 翻译请移步:https://blog.csdn.net/ghw15221836342/article/details ...
-
Windows Server 2008组策略安全实践(同样适用于域控制)
Windows Server 2008系统的安全功能非法强大,而它的强大之处不仅仅是新增加了一些安全功能,而且还表现在一些不起眼的传统功能上.对Windows Server 2008系统的组策略功能进 ...
-
IDEA-Debug调试操作
基本概念 快捷键和eclipse还是有区别的,不过基本概念是相通的 Step into F7 单步调试进入函数内部. Step over F8 单步调试不进入函数内部,如果装了金山词霸2006则 ...
-
Jquery 监听浏览器前进后退
jQuery(document).ready(function () { if (window.history && window.history.pushState) { $(win ...
-
Java将CST的时间字符串转换成需要的日期格式字符串
已知得到的Date类型的变量meettingdate 的值为Sun Dec 16 10:56:34 CST :现在要将它改为yyyy-MM-dd类型或yyyy年MM月dd日: 变为yyyy年MM月dd ...
-
redis的有序集合(Sorted Sets)数据类型
和Sets相比,Sorted Sets增加了一个权重参数score,使得集合中的元素能够按score进行有序排列,比如一个存储全班同学成绩的Sorted Sets,其集合value可以是同学的学号,而 ...
-
notepad++实现python运行
一.先确保windows电脑上先安装python解释器 方法参考:https://www.cnblogs.com/hepeilinnow/p/9727922.html 二.打开notepad++,写一 ...