Fields Summary |
---|
public String | permissionOptional name of a permission required to be able to access this
Service. From the "permission" attribute. |
public static final int | FLAG_STOP_WITH_TASKBit in {@link #flags}: If set, the service will automatically be
stopped by the system if the user removes a task that is rooted
in one of the application's activities. Set from the
{@link android.R.attr#stopWithTask} attribute. |
public static final int | FLAG_ISOLATED_PROCESSBit in {@link #flags}: If set, the service will run in its own
isolated process. Set from the
{@link android.R.attr#isolatedProcess} attribute. |
public static final int | FLAG_SINGLE_USERBit in {@link #flags}: If set, a single instance of the service will
run for all users on the device. Set from the
{@link android.R.attr#singleUser} attribute. |
public int | flagsOptions that have been set in the service declaration in the
manifest.
These include:
{@link #FLAG_STOP_WITH_TASK}, {@link #FLAG_ISOLATED_PROCESS},
{@link #FLAG_SINGLE_USER}. |
public static final Creator | CREATOR |