Я пытаюсь создать и запустить службу для реагирования собственного приложения, и после запуска службы мне нужно вызвать некоторые методы службы, что означает, что мне нужно получить экземпляр работающей службы, поэтому я пытаюсьдля использования bindservice ().
проблема в том, что когда я вызываю bindservice (), не запускаются onServiceConnected () и onStartCommand (), с другой стороны, запускается onBind () в службе.
все ответы, которые я попробовал, не помогли, это часть из них:
ServiceConnection.onServiceConnected () никогда не вызывался после привязки к запущенной службеonServiceConnected никогда не вызывается после метода bindService ServiceConnection :: onServiceConnected не вызывается, даже если Context :: bindService возвращает true? OnServiceConnected не вызывается
Заранее спасибо.
Вот служба:
public class TestService extends Service {
private LocalBinder mBinder = new LocalBinder();
private Intent serviceIntent;
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
super.onStartCommand(intent, flags, startId);
Log.i("service", "service starting!!@!@!@ ");
return START_STICKY;
}
@Override
public void onDestroy() {
super.onDestroy();
Log.i("EXIT", "ondestroy!");
Intent broadcastIntent = new Intent("com.testapp.service.RestartTest");
sendBroadcast(broadcastIntent);
}
@Override
public void onTaskRemoved(Intent rootIntent) {
Intent broadcastIntent = new Intent("com.testapp.service.RestartTest");
sendBroadcast(broadcastIntent);
super.onTaskRemoved(rootIntent);
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return mBinder;
}
public class LocalBinder extends Binder {
TesService getService() {
return TestService.this;
}
}
}
пакет для реактивного натива:
public class TestPackage implements ReactPackage {
private ReactApplicationContext applicationContext;
TestService runningService;
boolean mBound = false;
@Override
public List<ViewManager> createViewManagers(ReactApplicationContext reactContext) {
return Collections.emptyList();
}
@Override
public List<NativeModule> createNativeModules(
ReactApplicationContext reactContext) {
List<NativeModule> modules = new ArrayList<>();
runningService = new TestService(reactContext);
Intent serviceIntent = new Intent(reactContext, runningService.getClass());
reactContext.bindService(serviceIntent, mConnection, Context.BIND_AUTO_CREATE);
modules.add(runningService.someMoudle());
return modules;
}
/** Defines callbacks for service binding, passed to bindService() */
private ServiceConnection mConnection = new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName className,
IBinder service) {
runningService = ((LocalBinder) service).getService();
mBound = true;
}
@Override
public void onServiceDisconnected(ComponentName arg0) {
mBound = false;
}
};
}
AndroidManifest.xml
содержит
<service
android:name=".TestService">
</service>