java.lang.Object | |
↳ | android.app.AlarmManager.AlarmClockInfo |
An immutable description of an alarm clock.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.os.Parcelable
|
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
CREATOR |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new alarm clock description.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Describe the kinds of special objects contained in this Parcelable's
marshalled representation.
| |||||||||||
Returns an intent intent that can be used to show or edit details of the alarm clock in
the application that scheduled it.
| |||||||||||
Returns the time at which the alarm is going to trigger.
| |||||||||||
Flatten this object in to a Parcel.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
android.os.Parcelable
|
Creates a new alarm clock description.
triggerTime | time at which the underlying alarm is triggered in wall time milliseconds since the epoch |
---|---|
showIntent | an intent that can be used to show or edit details of the alarm clock. |
Describe the kinds of special objects contained in this Parcelable's marshalled representation.
Returns an intent intent that can be used to show or edit details of the alarm clock in the application that scheduled it.
Beware that any application can retrieve and send this intent,
potentially with additional fields filled in. See
PendingIntent.send()
and Intent.fillIn()
for details.
Returns the time at which the alarm is going to trigger.
This value is UTC wall clock time in milliseconds, as returned by
currentTimeMillis()
for example.
Flatten this object in to a Parcel.
dest | The Parcel in which the object should be written. |
---|---|
flags | Additional flags about how the object should be written.
May be 0 or PARCELABLE_WRITE_RETURN_VALUE .
|