to top
Android APIs
public class

ServiceInfo

extends ComponentInfo
implements Parcelable
java.lang.Object
   ↳ android.content.pm.PackageItemInfo
     ↳ android.content.pm.ComponentInfo
       ↳ android.content.pm.ServiceInfo

Class Overview

Information you can retrieve about a particular application service. This corresponds to information collected from the AndroidManifest.xml's <service> tags.

Summary

Constants
int FLAG_ISOLATED_PROCESS Bit in flags: If set, the service will run in its own isolated process.
int FLAG_STOP_WITH_TASK Bit in 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.
[Expand]
Inherited Constants
From interface android.os.Parcelable
Fields
public static final Creator<ServiceInfo> CREATOR
public int flags Options that have been set in the service declaration in the manifest.
public String permission Optional name of a permission required to be able to access this Service.
[Expand]
Inherited Fields
From class android.content.pm.ComponentInfo
From class android.content.pm.PackageItemInfo
Public Constructors
ServiceInfo()
ServiceInfo(ServiceInfo orig)
Public Methods
int describeContents()
Describe the kinds of special objects contained in this Parcelable's marshalled representation.
void dump(Printer pw, String prefix)
String toString()
Returns a string containing a concise, human-readable description of this object.
void writeToParcel(Parcel dest, int parcelableFlags)
[Expand]
Inherited Methods
From class android.content.pm.ComponentInfo
From class android.content.pm.PackageItemInfo
From class java.lang.Object
From interface android.os.Parcelable

Constants

public static final int FLAG_ISOLATED_PROCESS

Since: API Level 16

Bit in flags: If set, the service will run in its own isolated process. Set from the isolatedProcess attribute.

Constant Value: 2 (0x00000002)

public static final int FLAG_STOP_WITH_TASK

Since: API Level 14

Bit in 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 stopWithTask attribute.

Constant Value: 1 (0x00000001)

Fields

public static final Creator<ServiceInfo> CREATOR

Since: API Level 1

public int flags

Since: API Level 14

Options that have been set in the service declaration in the manifest. These include: FLAG_STOP_WITH_TASK, FLAG_ISOLATED_PROCESS.

public String permission

Since: API Level 1

Optional name of a permission required to be able to access this Service. From the "permission" attribute.

Public Constructors

public ServiceInfo ()

Since: API Level 1

public ServiceInfo (ServiceInfo orig)

Since: API Level 1

Public Methods

public int describeContents ()

Since: API Level 1

Describe the kinds of special objects contained in this Parcelable's marshalled representation.

Returns
  • a bitmask indicating the set of special object types marshalled by the Parcelable.

public void dump (Printer pw, String prefix)

Since: API Level 5

public String toString ()

Since: API Level 1

Returns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:

   getClass().getName() + '@' + Integer.toHexString(hashCode())

See Writing a useful toString method if you intend implementing your own toString method.

Returns
  • a printable representation of this object.

public void writeToParcel (Parcel dest, int parcelableFlags)

Since: API Level 1