2015年11月10日

传递消息--第三方开源--EventBus的简单使用

摘要: EventBus下载地址:https://github.com/greenrobot/EventBusMyEvent: 1 package com.zzw.testeventbus; 2 3 public class MyEvent { 4 public int id; 5 pub... 阅读全文

posted @ 2015-11-10 17:12 Z2 阅读(296) 评论(0) 推荐(0)

通过messenger实现activity与service的相互通信

摘要: 布局: 1 6 7 14 15 22 23 30 31 activity_main.xmlMainActivity: 1 package com.zzw.testmessenger; 2 3 import android.app.Activity; 4 impo... 阅读全文

posted @ 2015-11-10 15:39 Z2 阅读(423) 评论(0) 推荐(0)

通过Messenger与后台连接(单向操作,activity向service发送数据)

摘要: xml: 1 6 7 14 15 22 23 30 31 布局MainActivity: 1 package com.zzw.testmessenger; 2 3 import android.app.Activity; 4 import android.content... 阅读全文

posted @ 2015-11-10 11:21 Z2 阅读(431) 评论(0) 推荐(0)

导航