web-dev-qa-db-ja.com

AlarmManagerが機能しない

(たとえば)10秒後にアクティビティAlarmReceiverを開始する必要があります。アプリを実行せずにアクティベートする必要があります。ただし、アプリが実行されているかどうかにかかわらず、AlarmReceiverは呼び出されません。助言がありますか?

Intent intent = new Intent(this, AlarmReceiver.class);
PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 111, intent, 0);
AlarmManager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);

//alarmManager.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() 
                                          //+ (10 * 1000), pendingIntent);
Toast.makeText(this, "Alarm set", Toast.LENGTH_LONG).show();
21
dinesh707
_public class AlarmReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
          String message = "Hellooo, alrm worked ----";
          Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
          Intent intent2 = new Intent(context, TripNotification.class); 
          intent2.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
          context.startActivity(intent2);
    }

    public void setAlarm(Context context){
        Log.d("Carbon","Alrm SET !!");

        // get a Calendar object with current time
         Calendar cal = Calendar.getInstance();
         // add 30 seconds to the calendar object
         cal.add(Calendar.SECOND, 30);
         Intent intent = new Intent(context, AlarmReceiver.class);
         PendingIntent sender = PendingIntent.getBroadcast(context, 192837, intent, PendingIntent.FLAG_UPDATE_CURRENT);

         // Get the AlarmManager service
         AlarmManager am = (AlarmManager) context.getSystemService(context.ALARM_SERVICE);
         am.set(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), sender);
    }
}
_

これは私が何とか機能するようになった最後のコードです。追加する必要があります

_ <receiver  Android:process=":remote" Android:name="AlarmReceiver"></receiver>
_

マニフェストファイルの_</application>_タグのすぐ上。

これにより、メソッドSetAlarm()を呼び出してから30秒後にトリガーされるアラームが設定されます

35
dinesh707

現在のところ、アプリを実行せずにAlarmを起動することはできません。アラームをアクティブにするには、それぞれのアプリを一度実行する必要があります。

In Your ALARM_ACTIVITY:

AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);

Intent intent = new Intent(ALARM_ACTIVITY.this,ALARM_RECEIVER.class); 

PendingIntent pendingIntent = PendingIntent.getBroadcast(SetReminder.this, ID, intent, PendingIntent.FLAG_UPDATE_CURRENT);

alarmManager.set(AlarmManager.RTC_WAKEUP, System.currentTimeInMillis() + 1000, pendingIntent);

In Your ALARM_RECEIVER

NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);

PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);

notification = new Notification(R.drawable.alarmicon, "charSequence", System.currentTimeMillis());

notification.setLatestEventInfo(context, "alarmTitle", "charSequence", pendingIntent);

notification.flags |= Notification.FLAG_AUTO_CANCEL;

notificationManager.notify(1, notification);
6
Prat

それでも機能しない場合は、Android:process=":remote"一部が役立つ場合があります。私のために働いた:)

3
kellogs

AlarmManagerでアラームを確立するためにアプリが1回実行されている限り、アプリが実行されていなくても、アラームがインテントを発生させます。例外は、デバイスの再起動後です。 デバイスの再起動時にアラームを開始する するには、BroadcastReceiverを実装してアラームを設定し、ACTION_BOOT_COMPLETEDのマニフェストにレシーバーを追加します。

<receiver Android:name=".SampleBootReceiver"
        Android:enabled="false">
    <intent-filter>
        <action Android:name="Android.intent.action.BOOT_COMPLETED"></action>
    </intent-filter>
</receiver>
0
Edward Brey