我正在执行一些法典,我希望定期加以管理(一段时间后进行重新更新......)。 我决定与警报管理员接洽,因为我知道,我们能够利用等待的意图,要求其他人代表我们做一些工作。 在此,我开始使用警报管理员。
intent = new Intent(AutoUpdateActivity.this, AlarmService.class);
pI = PendingIntent.getService(AutoUpdateActivity.this,0, intent, 0);
alarmManager.setRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP,firstTime,10*1000,pI);
我的服务在每10个秘密之后,也受到罚款。 我现在结束我的发言。
pI.cancel();
这也是工作上的罚款,我的服务不再继续。
但是,当我去找和检查管理服务时,我仍然显示,服务是运行的。 在什么地方我错了? 我有什么误导?
为了方便我的解决办法,我停止了我这样的服务。
pI.cancel();
stopService(intent);
this cancel pI as well as stop service,but I am not sure is this correct way. so kindly share your knowledge and let me know where i am going wrong.