AlarmManager或服务

时间:2013-10-26 09:37:33

标签: android service alarmmanager

我是C ++开发人员并开发我的第一个Android应用程序。我的申请是一种特殊的提醒。我正在寻找最好的方法。我试过这种方法:

  1. 使用服务
  2. 使用AlarmManager
  3. 我的问题是我可以单独使用AlarmManager吗?考虑到我的AlarmManager应该每1秒触发一次,这是一个CPU耗时的任务吗? (似乎每次执行AlarmManager时都会创建一个除主进程之外的新进程并立即被终止)。

    如果我使用服务,那么我的应用程序应始终保留在内存中,如果被用户杀死会发生什么情况!

    Android 警报(默认安装的应用程序)如何运作?

    任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:6)

使用返回START_STICKY并使其成为startForeground的服务,这样你的应用程序就会一直运行,即使系统在一段时间之后将其杀死资源,它将正常启动并再次运行,并且用户将其杀死这个甚至很大的应用程序抱怨像Whatsapp,因为你在第一次安装whatsapp时在问题中看到。以下是服务应该如何的示例:

 public class Yourservice extends Service{

@Override
public void onCreate() {
    super.onCreate();
    // Oncreat called one time and used for general declarations like registering a broadcast receiver  
}

@Override
public 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;
}

@Override
public IBinder onBind(Intent intent) {
    return null;
}

@Override
public void onDestroy() {
    super.onDestroy();
    stopForeground(true);
}
}

这是执行代码的持续服务的最佳方法。