我有一个套接字服务
<service
android:name=".SocketService"
android:process=":socket"/>
我通过bindService
连接到它
并使用AIDL
该服务旨在与服务器和应用程序交换数据。该服务没有意图过滤器。
public final class SocketService extends Service {
@Override
public IBinder onBind(Intent intent) {
return new Binder();
}
private final class Binder extends ISocketService.Stub {
@Override
public void on(String event, ISocketEmitterListener listener) throws RemoteException {
...
}
@Override
public int emit(String event, byte[] bytes) throws RemoteException {
...
return 0;
}
}
@Override
public boolean onUnbind(Intent intent) {
boolean stopSelf = DBManager.getBoolean(DBManager.SOCKET_SERVICE_STOP_SELF);
if (stopSelf) {
stopSelf();
DBManager.save(DBManager.SOCKET_SERVICE_STOP_SELF, false);
}
Timber.i("SocketService unbinded!");
return super.onUnbind(intent);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Timber.i("SocketService started!");
...
return START_STICKY;
}
@Override
public void onTaskRemoved(Intent rootIntent) {
stopSelf();
Timber.i("SocketService task removed!");
super.onTaskRemoved(rootIntent);
}
@Override
public void onDestroy() {
DBManager.save(DBManager.SOCKET_SERVICE_IS_RUNNING, false);
Timber.i("SocketService destroyed!");
}
}
我的问题是,当应用程序收到任何错误并崩溃或只是错误关闭时,例如,用户通过任务管理器将其卸载时,下一次服务启动是不可能的!为此,您需要重新安装该应用程序,否则它将写入以下内容:
ActivityManager: Unable to start service Intent { cmp=package.name/.SocketService} U=0: not found
如何摆脱此无需重新安装应用程序?
我已经尝试了许多方法:
1)覆盖Thread.UncaughtExceptionHandler
并在System.exit(1)
之前执行undind和stopService
2)内含onTaskRemoved()
的Ovveride stopSelf()
3)等...
现在,我已经采用了这种检查方法,以便在有任何情况下通知用户由于该错误而必须重新安装该应用程序。
public static boolean checkOnNonNull(Context context, Class<?> clazz) {
Intent service = new Intent(context, clazz);
ResolveInfo rInfo = context.getPackageManager().resolveService(service, PackageManager.GET_SHARED_LIBRARY_FILES);
ServiceInfo sInfo = rInfo != null ? rInfo.serviceInfo : null;
if (sInfo == null) {
Timber.e("Unable to start service " + service + ": not found");
return false;
}
return true;
}
UPD 我进行了一些测试,结果似乎清单中的记录确实消失了,因为我开始在类名中添加数字,并且该服务开始使用一个已经很新的名称工作。但是找不到所有旧名字。
<service
android:name=".SocketService+[1-10]"
android:process=":socket"/>
// Then I put the numbers in reverse order and .SocketService9 useded once already not found.
答案 0 :(得分:0)
禁用该服务作为组件时,唯一可行的选择是手动将其打开:
mobile