4

私は C++ 開発者で、初めての Android アプリケーションを開発しています。私のアプリケーションは特別な種類のリマインダーです。私はそれを行うための最良の方法を探しています。私はこのアプローチを試しました:

  1. サービスを利用する
  2. AlarmManager を使用する

私の質問は、AlarmManager を単独で使用できるかということです。AlarmManager を 1 秒ごとに起動する必要があることを考えると、CPU 時間のかかるタスクですか? (AlarmManager が実行されるたびに、メイン プロセスを除く新しいプロセスが作成され、すぐに強制終了されるようです)。

サービスを使用する場合、アプリケーションは常にメモリにとどまる必要があり、ユーザーによって強制終了された場合はどうなりますか!?

Androidアラーム(デフォルトでインストールされるアプリケーション) はどのように機能しますか?

どんな助けでも大歓迎です。

4

1 に答える 1

8

START_STICKY を返す Service を使用し、それを 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);
}
}

これは、コードを実行するための継続的なサービスの最良のレシピです。

于 2013-10-29T11:57:56.380 に答える