我是一名C开发人员,正在开发我的第一个Android应用程序.我的申请是一种特殊的提醒.我正在寻找最好的方法.我试过这种方法:
>使用服务
>使用AlarmManager
我的问题是我可以单独使用AlarmManager吗?考虑到我的AlarmManager应该每1秒触发一次,这是一个cpu耗时的任务吗? (似乎每次执行AlarmManager时,都会创建一个除主进程之外的新进程并立即被终止).
如果我使用服务,那么我的应用程序应始终保留在内存中,如果被用户杀死会发生什么!
AndroID Alarms(默认安装的应用程序)如何工作?
任何帮助,将不胜感激.
解决方法:
使用一个返回START_STICKY并使其成为startForeground的服务,这样你的应用程序将一直运行,即使系统在一段时间内将其杀死资源,它将正常启动并再次运行,并且用户很好地杀死它甚至是大型应用程序抱怨像Whatsapp,因为你在第一次安装whatsapp时在问题中看到了.以下是服务应该如何的示例:
public class Yourservice extends Service{@OverrIDepublic voID onCreate() { super.onCreate(); // Oncreat called one time and used for general declarations like registering a broadcast receiver }@OverrIDepublic int onStartCommand(Intent intent, int flags, int startID) { super.onStartCommand(intent, flags, startID);// here to show that your service is running foreground mnotificationmanager = (notificationmanager) getSystemService(NOTIFICATION_SERVICE); Intent bIntent = new Intent(this, Main.class); PendingIntent pbIntent = PendingIntent.getActivity(this, 0 , bIntent, Intent.FLAG_ACTIVITY_CLEAR_top); NotificationCompat.Builder bBuilder = new NotificationCompat.Builder(this) .setSmallicon(R.drawable.ic_launcher) .setContentTitle("Title") .setContentText("sub Title") .setautoCancel(true) .setongoing(true) .setContentIntent(pbIntent); barNotif = bBuilder.build(); this.startForeground(1, barNotif);// here the body of your service where you can arrange your reminders and send alerts return START_STICKY;}@OverrIDepublic IBinder onBind(Intent intent) { return null;}@OverrIDepublic voID onDestroy() { super.onDestroy(); stopForeground(true);}}
这是执行代码的持续服务的最佳配方.
总结以上是内存溢出为你收集整理的android – AlarmManager或服务全部内容,希望文章能够帮你解决android – AlarmManager或服务所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)