02 2016 档案

摘要:可程序间通信 注册通信,注销通信,发送消息 package com.jiahemeikang.helloandroid; import com.jiahemikang.service.EchoService; import com.jiahemikang.service.EchoService.Ec 阅读全文
posted @ 2016-02-29 23:25 东百牧码人 阅读(292) 评论(0) 推荐(0)
摘要:与服务通信 用bindservice 而startservice并无通信条件. service 为android为系统服务,所以程序员无法new出来,只能建立服务,共其他组件使用。 package com.jiahemeikang.helloandroid; import com.jiahemika 阅读全文
posted @ 2016-02-27 23:29 东百牧码人 阅读(272) 评论(0) 推荐(0)
摘要:Intent是Activity之间的管道 可以用来做Acitivity的跳转或传递数据 protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R. 阅读全文
posted @ 2016-02-18 21:52 东百牧码人 阅读(180) 评论(0) 推荐(0)