public class

LiveLockScreenInfo

extends Object
implements Parcelable
java.lang.Object
   ↳ cyanogenmod.app.LiveLockScreenInfo

Class Overview

Data structure defining a Live lock screen.

Summary

Nested Classes
class LiveLockScreenInfo.Builder Builder class for LiveLockScreenInfo objects. 
Constants
int PRIORITY_DEFAULT Default Live lock screen priority.
int PRIORITY_HIGH Higher priority, for items that are more important
int PRIORITY_LOW Lower priority, for items that are less important.
int PRIORITY_MAX Highest priority.
int PRIORITY_MIN Lowest priority.
[Expand]
Inherited Constants
From interface android.os.Parcelable
Fields
public static final Creator<LiveLockScreenInfo> CREATOR
public ComponentName component The component, which implements KeyguardExternalViewProviderService, to display for this live lock screen.
public int priority Relative priority for this Live lock screen.
Public Constructors
LiveLockScreenInfo(ComponentName component, int priority)
Constructs a LiveLockScreenInfo object with the given values.
LiveLockScreenInfo()
Constructs a LiveLockScreenInfo object with default values.
Public Methods
LiveLockScreenInfo clone()
int describeContents()
String toString()
void writeToParcel(Parcel dest, int flags)
[Expand]
Inherited Methods
From class java.lang.Object
From interface android.os.Parcelable

Constants

public static final int PRIORITY_DEFAULT

Added in API level 5

Default Live lock screen priority.

Constant Value: 0 (0x00000000)

public static final int PRIORITY_HIGH

Added in API level 5

Higher priority, for items that are more important

Constant Value: 1 (0x00000001)

public static final int PRIORITY_LOW

Added in API level 5

Lower priority, for items that are less important.

Constant Value: -1 (0xffffffff)

public static final int PRIORITY_MAX

Added in API level 5

Highest priority.

Constant Value: 2 (0x00000002)

public static final int PRIORITY_MIN

Added in API level 5

Lowest priority.

Constant Value: -2 (0xfffffffe)

Fields

public static final Creator<LiveLockScreenInfo> CREATOR

Added in API level 5

public ComponentName component

Added in API level 5

The component, which implements KeyguardExternalViewProviderService, to display for this live lock screen.

public int priority

Added in API level 5

Relative priority for this Live lock screen.

Public Constructors

public LiveLockScreenInfo (ComponentName component, int priority)

Added in API level 5

Constructs a LiveLockScreenInfo object with the given values. You might want to consider using LiveLockScreenInfo.Builder instead.

public LiveLockScreenInfo ()

Added in API level 5

Constructs a LiveLockScreenInfo object with default values. You might want to consider using LiveLockScreenInfo.Builder instead.

Public Methods

public LiveLockScreenInfo clone ()

Added in API level 5

public int describeContents ()

Added in API level 5

public String toString ()

public void writeToParcel (Parcel dest, int flags)

Added in API level 5