FileDocCategorySizeDatePackage
BootReceiver.javaAPI DocAndroid 1.5 API1341Wed May 06 22:42:46 BST 2009com.android.email.service

BootReceiver

public class BootReceiver extends android.content.BroadcastReceiver

Fields Summary
Constructors Summary
Methods Summary
public voidonReceive(android.content.Context context, android.content.Intent intent)

        if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())) {
            MailService.actionReschedule(context);
        }
        else if (Intent.ACTION_DEVICE_STORAGE_LOW.equals(intent.getAction())) {
            MailService.actionCancel(context);
        }
        else if (Intent.ACTION_DEVICE_STORAGE_OK.equals(intent.getAction())) {
            MailService.actionReschedule(context);
        }