摘要:
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... 阅读全文
摘要:
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() {... 阅读全文