摘要: BroadcastReceiver 广播接受者 Android中, Broadcast是一种数据传递的方式/通信方式. Brodadcast 是Android 系统组件之一 广播的特性 1. 由一个发送方, 若干接收方组成 2. 发送方与接收方存在匹配规则 调用方式 Intent intent = 阅读全文
posted @ 2016-08-28 16:30 时空矩人 阅读(138) 评论(0) 推荐(0) 编辑
摘要: Intent Intent 作用(两个): 1. 激活系统组件 startActivity(Intent) startService(Intent) / stopService(Intent) bingService(Intent, ServiceConnection, int) 2. 在系统组件之 阅读全文
posted @ 2016-08-28 16:26 时空矩人 阅读(214) 评论(0) 推荐(0) 编辑
摘要: Service: 服务 Service 是Activity系统的核心组件之一. 因此需要继承和注册 Service 是内有界面的, 适合在后台长期的执行任务. (如放歌, 检测版本跟新, 下载, 上传等) 尽管Service适合长时间执行任务, 但是Service是运行在主线程上的. 所以在Serv 阅读全文
posted @ 2016-08-28 11:05 时空矩人 阅读(123) 评论(0) 推荐(0) 编辑