アプリケーション間でサービスをバインドして通信する

3780 ワード

AIDLファイルにメソッドを追加する:void setData(String data);使用する場合はこのインタフェースを実装する必要があります.public class AppService extends Service{public AppService(){}
@Override
public IBinder onBind(Intent intent) {
  
    return new IAppServiceRemoteBindler.Stub() {
        @Override
        public void basicTypes(int anInt, long aLong, boolean aBoolean, float aFloat, double aDouble, String aString) throws RemoteException {

        }

        @Override
        public void setData(String data) throws RemoteException {

            AppService.this.data = data;
        }
    };
}

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    return super.onStartCommand(intent, flags, startId);
}

@Override
public void onCreate() {
    super.onCreate();
    System.out.println("Service start");

    new Thread(){
        @Override
        public void run() {
            super.run();
            running = true;
            while (running){
                System.out.println(data);
                try {
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }
    }.start();
}

@Override
public void onDestroy() {
    super.onDestroy();
    System.out.println("service destroyed");

    running = false;
}

private String data = "    ";

private boolean running = false;

}Binderで別のAppの中のAIDLの関数を実行するには、Appの中のAIDLファイルをAnotherAppにコピーし、パッケージ名をAppと同じにする必要があります(まずAIDLのfolderを作成し、それからパッケージを作成し、パッケージ名はAppの中のAIDLパッケージの名前と同じで、それから同じAIDLファイルを作成します).その後、AnotherAppでこのAIDLを使用することができます.そして、public class MainActivity extends AppCompatActivity implements View.OnClickListener、ServiceConnection{
private Intent serviceIntent;
private EditText etInput;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    serviceIntent = new Intent();
    serviceIntent.setComponent(new ComponentName("com.chenshipeng.startservicefromanotherapp","com.chenshipeng.startservicefromanotherapp.AppService"));

    etInput = (EditText)findViewById(R.id.etInput);

    findViewById(R.id.btnStartAppService).setOnClickListener(this);
    findViewById(R.id.btnStopAppService).setOnClickListener(this);
    findViewById(R.id.bindAppService).setOnClickListener(this);
    findViewById(R.id.unBindAppService).setOnClickListener(this);
    findViewById(R.id.btnSync).setOnClickListener(this);
}

@Override
public void onClick(View v) {
    switch (v.getId()){
        case R.id.btnStartAppService:
            startService(serviceIntent);
            break;
        case R.id.btnStopAppService:
            stopService(serviceIntent);
            break;
        case R.id.bindAppService:
            bindService(serviceIntent,this, Context.BIND_AUTO_CREATE);
            break;
        case R.id.unBindAppService:
            unbindService(this);
            bindler = null;
            break;
        case R.id.btnSync:
            if (bindler != null){

                try {
                    bindler.setData(etInput.getText().toString());
                } catch (RemoteException e) {
                    e.printStackTrace();
                }

            }
            break;
    }
}

@Override
public void onServiceConnected(ComponentName name, IBinder service) {

    System.out.println("bind service");
    System.out.println(service);
       //              ,      ,      App ,         ,           。
    bindler = IAppServiceRemoteBindler.Stub.asInterface(service);
}

@Override
public void onServiceDisconnected(ComponentName name) {

}
private IAppServiceRemoteBindler bindler = null;

}