FileDocCategorySizeDatePackage
AlarmService.javaAPI DocAndroid 5.1 API1362Thu Mar 12 22:22:44 GMT 2015com.android.testing.alarmservice

AlarmService

public class AlarmService extends android.app.Service

Fields Summary
private AlarmImpl
mAlarmImpl
static android.content.Context
sContext
Constructors Summary
Methods Summary
private AlarmImplgetAlarmImpl()

        if (mAlarmImpl == null) {
            mAlarmImpl = new AlarmImpl(this);
        }
        return mAlarmImpl;
    
public android.os.IBinderonBind(android.content.Intent intent)

        return getAlarmImpl();
    
public voidonCreate()


    
       
        super.onCreate();
        sContext = this;
    
public voidonDestroy()

        sContext = null;
        super.onDestroy();