摘要: AndroidManifest.xml Activity@Overridepublic void onClick(View v) { switch (v.getId()) { case R.id.btn_start: bindService(new Intent("com.bob.servicetest"), sc, Context.BIND_AUTO_CREATE); isBinded = true; break; case R.id.btn_stop: if (isBinded) { unb... 阅读全文
posted @ 2013-11-28 15:47 songsiyao 阅读(282) 评论(0) 推荐(0) 编辑
摘要: AndroidManifest.xml ActivitystartService(new Intent("com.bob.servicetest"));stopService(new Intent("com.bob.servicetest")); MyService.classpublic class MyService extends Service { public static final String TAG = "MyService"; @Override public void onCreate() {... 阅读全文
posted @ 2013-11-28 15:39 songsiyao 阅读(155) 评论(0) 推荐(0) 编辑