不要对警报管理器做这样的事情。报警管理器更多
应该在几个小时内完成的任务的概念(在最佳情况下)。
如果您需要精确处理您的任务,请使用内部处理程序
服务,该帖子执行您的可运行文件。
在你的 runnable 内部,调用方法来发布 runnable 再次执行。
将runnable和handler保存为服务的成员变量并make
过程粘滞。如果你想停止服务和处理程序(处理程序不会
如果你只是调用 stopService(Context) 或 Service.stopSelf() 就停止,你需要
在处理程序上使用您的 runnable 调用 removeCallbacks(runnable)。
干杯。
顺便说一句:想想你是否真的想每 5 秒启动一次服务。
也许只是在服务的可运行文件内完成服务工作
我刚才描述了。
Edit2:如果您需要服务可靠,请为启动操作添加一个广播接收器,它将在启动时接收广播并重新启动您的服务。
Edit3:检查您的服务是否正在运行的代码,无需启动它:
public static boolean isRunning(Context context) {
ActivityManager manager = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
for (ActivityManager.RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {
if (YourService.class.getName().equals(service.service.getClassName())){
return true;
}
}
return false;
}
但是,在 onStartCommand 中检查您的成员“处理程序”不为空
如果是这样,请忽略启动请求,因为这可能会导致您遇到多个可运行处理的情况。
编辑4:
服务代码片段:
public class LoopingServiceSnipped extends Service{
public static final long STANDARD_FREQUENCY = 1000;
private static long loopingFrequency = STANDARD_FREQUENCY;
private Handler serviceHandler;
private Runnable loop;
//EXTRAS
private static final String INTENT_EXTRA_STOP_SERVICE = LoopingServiceSnipped.class.getSimpleName() + "_INTENT_EXTRA_STOP_SERVICE";
private static final String INTENT_EXTRA_FREQUENCY = LoopingServiceSnipped.class.getSimpleName() + "_INTENT_EXTRA_FREQUENCY";
/**
* Determines if the service is running (reliably) without starting it.
*
* @param context
* needed for SystemServices
*
* @return true if the service is running
*/
public static boolean isRunning(Context context) {
ActivityManager manager = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
for (ActivityManager.RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {
if (LoadingScreenAppDetectionService.class.getName().equals(service.service.getClassName())){
return true;
}
}
return false;
}
public static void stopService(Context c) {
Intent i = new Intent(c, LoopingServiceSnipped
i.putExtra(INTENT_EXTRA_STOP_SERVICE, true);
c.startService(i);
}
public static synchronized void setFrequency(Context c, long frequency) {
Intent i = new Intent(c, LoadingScreenAppDetectionService.class);
i.putExtra(INTENT_EXTRA_FREQUENCY, frequency);
c.startService(i);
}
@Override
public void onCreate() {
super.onCreate();
init();
}
private void init() {
//do your initialization here
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
if (shouldStopService(intent)){
LOG.d("Going to stop service!");
tryStopService();
return Service.START_NOT_STICKY;
} else {
return startOrContinueService(intent);
}
}
private void tryStopService() {
stopLooping();
stopSelf();
}
private void stopLooping() {
if (serviceHandler != null){
serviceHandler.removeCallbacks(getLoop());
serviceHandler = null;
}
}
private int startOrContinueService(Intent intent) {
if (hasNewFrequency(intent)){
setFrequency(intent);
stopLooping();
}
if (!isServiceRunning()){
startLooping();
}
} else {
LOG.d("Going to continue with service!");
}
return Service.START_STICKY;
}
private boolean hasNewFrequency(Intent intent) {
return intent.hasExtra(INTENT_EXTRA_FREQUENCY);
}
private void setFrequency(Intent intent) {
if (intent.hasExtra(INTENT_EXTRA_FREQUENCY)){
loopingFrequency = intent.getLongExtra(INTENT_EXTRA_FREQUENCY, STANDARD_FREQUENCY);
}
}
private boolean isServiceRunning() {
return serviceHandler != null;
}
private boolean shouldStopService(Intent i) {
if (i.hasExtra(INTENT_EXTRA_STOP_SERVICE)){
return i.getBooleanExtra(INTENT_EXTRA_STOP_SERVICE, false);
} else {
return false;
}
}
private void startLooping() {
if (serviceHandler == null){
serviceHandler = new Handler();
}
serviceHandler.postDelayed(getAppDetectionLoop(), getFrequency());
}
private Runnable getLoop() {
if (loop == null){
loop = new Runnable() {
@Override
public void run() {
//do your looping work here
startLooping();
}
};
}
return loop;
}
另外添加 Boot Receiver 和 Screen TurnOn Receiver。