android.app.IntentService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.app;
public abstract class IntentService
extends android.app.Service
{
public IntentService(java.lang.String name) { throw new RuntimeException("Stub!"); }
public void setIntentRedelivery(boolean enabled) { throw new RuntimeException("Stub!"); }
public void onCreate() { throw new RuntimeException("Stub!"); }
public void onStart(android.content.Intent intent, int startId) { throw new RuntimeException("Stub!"); }
public int onStartCommand(android.content.Intent intent, int flags, int startId) { throw new RuntimeException("Stub!"); }
public void onDestroy() { throw new RuntimeException("Stub!"); }
public android.os.IBinder onBind(android.content.Intent intent) { throw new RuntimeException("Stub!"); }
protected abstract void onHandleIntent(android.content.Intent intent);
}