我知道这个问题被问过这么多次,但即使我的应用程序被杀,我也没有找到任何解决方案来保持服务的活力。 我的应用程序在所有设备上运行,但某些设备如果我杀了应用程序,那么我的服务也会杀死(设备名称MI 4版本和asus 5.0.3)
以下是我已启动前台服务的服务代码
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Notification notification = new NotificationCompat.Builder(this)
.setContentTitle("My service started at ")
.setTicker("My service started")
.setContentText("app")
.setSmallIcon(R.drawable.app)
.setLargeIcon(Bitmap.createScaledBitmap(icon, 128, 128, false))
.setContentIntent(pendingIntent)
.setOngoing(true).build();
startForeground(Constants.FOREGROUND_SERVICE,notification);
}
答案 0 :(得分:3)
对于这个问题,我在各种事件上为我的TestService制作了许多检查点 即。
- NetworkChangeReceiver
- BootReceiver
- on MainRectivity的创建方法
醇>
然后我有一个名为ServiceDetector.java的类
import android.app.ActivityManager;
import android.content.Context;
import java.util.List;
public class ServiceDetector {
// this method is very important
public boolean isServiceRunning(Context context, Class<?> serviceClass) {
ActivityManager activityManager = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
List<ActivityManager.RunningServiceInfo> services = activityManager.getRunningServices(Integer.MAX_VALUE);
if (services != null) {
for (int i = 0; i < services.size(); i++) {
if ((serviceClass.getName()).equals(services.get(i).service.getClassName()) && services.get(i).pid != 0) {
return true;
}
}
}
return false;
}
}
检查我的服务是否正在运行,现在,如果您的服务未运行,请再次启动
public void onReceive(Context context, Intent intent) {
ServiceDetector serviceDetector = new ServiceDetector();
if (!serviceDetector.isServiceRunning(context, TestService.class)) {
Intent startServiceIntent = new Intent(context, TestService.class);
context.startService(startServiceIntent);
} else {
Log.i(Constants.TAG, "Service is already running reboot");
}
}
答案 1 :(得分:1)
您可以实现的一种解决方法是在删除服务时重新启动它。即使用onTaskRemoved回调(link)。
@Override
public void onTaskRemoved(Intent rootIntent) {
// TODO Auto-generated method stub
Intent restartService = new Intent(getApplicationContext(),
this.getClass());
restartService.setPackage(getPackageName());
PendingIntent restartServicePI = PendingIntent.getService(
getApplicationContext(), 1, restartService,
PendingIntent.FLAG_ONE_SHOT);
AlarmManager alarmService = (AlarmManager)getApplicationContext().getSystemService(Context.ALARM_SERVICE);
alarmService.set(AlarmManager.ELAPSED_REALTIME, SystemClock.elapsedRealtime() +1000, restartServicePI);
}