Example usage for android.support.v4.content WakefulBroadcastReceiver subclass-usage

List of usage examples for android.support.v4.content WakefulBroadcastReceiver subclass-usage

Introduction

In this page you can find the example usage for android.support.v4.content WakefulBroadcastReceiver subclass-usage.

Usage

From source file org.symptomcheck.capstone.alarms.ReminderReceiver.java

public class ReminderReceiver extends WakefulBroadcastReceiver {

    final private String TAG = ReminderReceiver.this.getClass().getSimpleName();
    // The app's AlarmManager, which provides access to the system alarm services.
    private AlarmManager alarmMgr;
    // The pending intent that is triggered when the alarm fires.

From source file com.rks.musicx.services.MediaButtonReceiver.java

/**
 * @ Thanks to phonograph for button fixes
 */

public class MediaButtonReceiver extends WakefulBroadcastReceiver {

From source file com.example.hjcyz1991.project407.GcmBroadcastReceiver.java

/**
 * Created by hjcyz1991 on 5/6/15.
 */
public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {

From source file com.example.AllSOSservice.GcmBroadcastReceiver.java

/**
 * This {@code WakefulBroadcastReceiver} takes care of creating and managing a
 * partial wake lock for your app. It passes off the work of processing the GCM
 * message to an {@code IntentService}, while ensuring that the device does not
 * go back to sleep in the transition. The {@code IntentService} calls
 * {@code GcmBroadcastReceiver.completeWakefulIntent()} when it is ready to

From source file com.xhunmon.remind.AlarmReceiver.java

public class AlarmReceiver extends WakefulBroadcastReceiver {
    AlarmManager mAlarmManager;
    PendingIntent mPendingIntent;

    @Override
    public void onReceive(Context context, Intent intent) {

From source file com.blanyal.remindme.AlarmReceiver.java

public class AlarmReceiver extends WakefulBroadcastReceiver {
    AlarmManager mAlarmManager;
    PendingIntent mPendingIntent;

    @Override
    public void onReceive(Context context, Intent intent) {

From source file cn.studyjams.s2.sj0119.NForget.AlarmReceiver.java

public class AlarmReceiver extends WakefulBroadcastReceiver {
    AlarmManager mAlarmManager;
    PendingIntent mPendingIntent;

    @Override
    public void onReceive(Context context, Intent intent) {

From source file damo.three.ie.prepay.UpdateReceiver.java

/**
 * Executes the update service, ensuring the device doesn't fall back asleep before the service gets a chance to run.
 *
 * @author Damien O'Reilly
 */
public class UpdateReceiver extends WakefulBroadcastReceiver {

From source file remindme.AlarmReceiver.java

public class AlarmReceiver extends WakefulBroadcastReceiver {
    AlarmManager mAlarmManager;
    PendingIntent mPendingIntent;

    @Override
    public void onReceive(Context context, Intent intent) {

From source file com.github.notizklotz.derbunddownloader.download.AutomaticIssueDownloadAlarmReceiver.java

/**
 * Triggered by an alarm to automatically download the issue of today.
 */
public class AutomaticIssueDownloadAlarmReceiver extends WakefulBroadcastReceiver {

    private static final String LOG_TAG = AutomaticIssueDownloadAlarmReceiver.class.getSimpleName();