Activityはサービスをバインドし、サービスインスタンスを返します.特別tabactivityバインドse...

2928 ワード

最近のプロジェクトではActivityがサービスを呼び出す方法が使用されており、ActivityはtabActivityに配置されており、バインドするとサービスが空になるという問題が発生します.
public class MyService extends Service {
	// Binder(IBinder ),  
	// Service 
	// MyService 
	private class MyBinder extends Binder implements IBindService {

		@Override
		public void show(String name) {
			MyService.this.show(name);
		}

		@Override
		public MyService getService() {
			
			return MyService.this.getService();
		}

	}

	@Override
	public IBinder onBind(Intent intent) {
		System.out.println("onBind---------" );
		return new MyBinder(); //  IBinder
	}

	public void show(String name) {
		System.out.println("aaaa---------" + name);
		Toast.makeText(this,name, Toast.LENGTH_LONG).show();
	}

	
	@Override
	public void onDestroy() {
		System.out.println("onDestroy---------" );
		super.onDestroy();
	}
	public MyService getService() {
		return this;
	}

}

MyServiceのインタフェースで、実在クラスのオブジェクト------BindServiceを返すために使用されます.
public interface IBindService {
	public void show(String name);
	public MyService getService();
}

Activity実装クラス
public class MainActivity extends Activity {

	private Intent intent;
	private MyConn conn = new MyConn();
	// Binder 
	private IBindService iBindService;
	private Button button;
	// MyService 
	private MyService myService;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		intent = new Intent(this, MyService.class);
		//startService(intent);
		bindService(intent, conn, BIND_AUTO_CREATE);
		// Activity tabActivity 
		//getApplicationContext().bindService(intent, conn, BIND_AUTO_CREATE);
		button = (Button) findViewById(R.id.button1);
		button.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View v) {
				// iBindService.show("chen");
				myService.show("chen");
//				stopService(intent);
				unbindService(conn);
				
			}
		});

	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {

		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}

	private class MyConn implements ServiceConnection {
		public void onServiceConnected(ComponentName name, IBinder service) {
			iBindService = (IBindService) service;
			// 
			myService = iBindService.getService();
		}

		public void onServiceDisconnected(ComponentName name) {
		}
	}

}