Android App消息推送機制實現(xiàn)方法
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
android app消息推送機制實現(xiàn)方法 1.消息推送機制 2.獨立進程 全局的獨立進程,如果以":"開頭則為此服務開啟一個為此應用私有的獨立進程。舉個具體的例子吧,我們新建了一個 application,創(chuàng)建了主進程com.cnblogs.tianxia,那么: view sourceprint?1 <!--下面會創(chuàng)建一個全局的com.cnblogs.tianxia.message的獨立進程--> 2 <service android:name=".service.messageservice" android:label="消息推送" android:process=".message" /> 3 <!--或者--> 4 <!--下面會創(chuàng)建一個應用私有的com.cnblogs.tianxia:message的獨立進程--> 5 <service android:name=".service.messageservice" android:label="消息推送" android:process=":message" /> 我們沒必要建立一個全局的,本文選擇第二種方案,創(chuàng)建一個當前應用私有的獨立進程。 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 //運行狀態(tài),下一步驟有大用 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是點擊跳轉(zhuǎn)的activity,負責處理查看詳細信息。 view sourceprint?1 boolean ismessagepush = true;//不開啟就設置為false; 2 ... 3 if(ismessagepush){ 4 startservice(new intent(this, messageservice.class)) 5 }; 運行一下:
view sourceprint?1 stopservice(new intent(myactivity.this,messageservice.class)); 2 setmessagepush(false);//設置配置文件或數(shù)據(jù)庫中flag為false 運行一下,停止服務后,卻出乎意料的并沒有停下來,怎么回事?是不是代碼寫錯了? 5.退出線程 view sourceprint?1 //殺死該線程所在的進程,自然就退出了 2 system.exit(0); 第二種方法,設置isrunning為false。 view sourceprint?1 //前面說到了isrunning這個標志,設置為false后,線程的執(zhí)行就從while循環(huán)中跳出來了,然后自然結束 掉了 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 } 該文章在 2013/2/25 12:46:26 編輯過 |
關鍵字查詢
相關文章
正在查詢... |