サービスを呼び出す方法
2271 ワード
サービス内のメソッドは直接newオブジェクトのメソッドで呼び出すことはできません。ibinderで仲介者として呼び出さなければなりません。
1、サービスクラスの定義
public class methodService extends Service
2、テストの定義方法
//
public void tsxtMethod(){
Toast.makeText(getApplicationContext()," 。。。", Toast.LENGTH_LONG).show();
}
3、仲介者呼び出しtsxtMethodメソッドを定義myBinderは内部
// tsxtMethod
//Binder ibinder
public class myBinder extends Binder{
//
public void callTsxtMethod(){
tsxtMethod();
}
}
4、myBinderに戻る
@Override
public IBinder onBind(Intent intent) {
// return null;
// myBinder
return new myBinder();
}
5、main関数
public class MainActivity extends AppCompatActivity {
methodService.myBinder mybinder;
Mycon mycon;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//
Intent intent = new Intent(this, methodService.class);
mycon = new Mycon();
bindService(intent,mycon,BIND_AUTO_CREATE);
}
@Override
protected void onDestroy() {
//
unbindService(mycon);
super.onDestroy();
}
//
public void click(View V){
mybinder.callTsxtMethod();
}
private class Mycon implements ServiceConnection{
//
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
//
mybinder = (methodService.myBinder) service;
}
//
@Override
public void onServiceDisconnected(ComponentName name) {
}
}
}
注意:StartServiceとbindserviceのブレンドでサービスを開始する必要がある場合があります。すなわち、サービスを呼び出す方法も、音楽プレーヤーの例のようなバックグラウンドで長期にわたってサービスを実行させる必要もある。まずStartServiceメソッドを呼び出してサービスを開き、bindserviceを呼び出し、unbindServiceを使用してバインドを解除する必要があります。
// Service
Intent intent = new Intent(this,MusicService.class);
startService(intent);
myConn = new MyConn();
bindService(intent,myConn,BIND_AUTO_CREATE);