FileDocCategorySizeDatePackage
IsolatedService.javaAPI DocAndroid 5.1 API1310Thu Mar 12 22:22:42 GMT 2015com.google.android.test.activity

IsolatedService

public class IsolatedService extends android.app.Service

Fields Summary
android.os.Binder
mBinder
Constructors Summary
Methods Summary
public android.os.IBinderonBind(android.content.Intent intent)

        return mBinder;
    
public voidonCreate()


    
       
        super.onCreate();
        Log.i("IsolatedService", "Service created in pid " + android.os.Process.myPid());
    
public voidonDestroy()

        super.onDestroy();
        Log.i("IsolatedService", "Service destroyed in pid " + android.os.Process.myPid());