|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.twofortyfouram.locale.Intent
public final class Intent
Contains Intent constants necessary for interacting with the Locale Developer Platform.
| Field Summary | |
|---|---|
static java.lang.String |
ACTION_EDIT_CONDITION
Intent action String broadcast by Locale to create or edit a plug-in condition. |
static java.lang.String |
ACTION_EDIT_SETTING
Intent action String broadcast by Locale to create or edit a plug-in setting. |
static java.lang.String |
ACTION_FIRE_SETTING
Intent action String broadcast by Locale to fire a plug-in setting. |
static java.lang.String |
ACTION_QUERY_CONDITION
Ordered Intent action String broadcast by Locale to query a plug-in condition. |
static java.lang.String |
ACTION_REQUEST_QUERY
Intent action String to notify Locale that a plug-in condition is requesting that
Locale query it via ACTION_QUERY_CONDITION. |
static java.lang.String |
EXTRA_ACTIVITY
Type: String |
static java.lang.String |
EXTRA_BUNDLE
Type: Bundle |
static java.lang.String |
EXTRA_STRING_BLURB
Type: String |
static java.lang.String |
EXTRA_STRING_BREADCRUMB
Type: String |
static int |
RESULT_CONDITION_SATISFIED
Ordered broadcast result code indicating that a plug-in condition's state is satisfied (true). |
static int |
RESULT_CONDITION_UNKNOWN
Ordered broadcast result code indicating that a plug-in condition's state is unknown (neither true nor false). |
static int |
RESULT_CONDITION_UNSATISFIED
Ordered broadcast result code indicating that a plug-in condition's state is not satisfied (false). |
| Method Summary |
|---|
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final int RESULT_CONDITION_SATISFIED
ACTION_QUERY_CONDITION,
Constant Field Valuespublic static final int RESULT_CONDITION_UNSATISFIED
ACTION_QUERY_CONDITION,
Constant Field Valuespublic static final int RESULT_CONDITION_UNKNOWN
If a condition returns UNKNOWN, then Locale will use the last known return value on a best-effort basis. Best-effort means that Locale may not persist known values forever (e.g. last known values could hypothetically be cleared after a device reboot, a restart of the Locale process, or other events). If there is no last known return value, then unknown is treated as not satisfied (false).
The purpose of an UNKNOWN result is to allow a plug-in condition more than 10 seconds to process a
requery. A BroadcastReceiver must return within 10 seconds, otherwise it will be killed by
Android. A plug-in that needs more than 10 seconds might initially return
RESULT_CONDITION_UNKNOWN, subsequently request a requery, and then return either
RESULT_CONDITION_SATISFIED or RESULT_CONDITION_UNSATISFIED.
ACTION_QUERY_CONDITION,
Constant Field Valuespublic static final java.lang.String ACTION_EDIT_SETTING
Intent action String broadcast by Locale to create or edit a plug-in setting. When
Locale broadcasts this Intent, it will be sent directly to the package and class of the
plug-in's Activity. The Intent may contain a EXTRA_BUNDLE that was previously
set by the Activity result of ACTION_EDIT_SETTING.
There SHOULD be only one Activity per APK that implements this Intent. If a single APK
wishes to export multiple plug-ins, it MAY implement multiple Activity instances that implement this
Intent, however there must only be a single ACTION_FIRE_SETTING receiver. In this
scenario, it is the responsibility of the Activities to store enough data in EXTRA_BUNDLE to
allow this receiver to disambiguate which "plug-in" is being fired. To avoid user confusion, it is
recommended that only a single plug-in be implemented per APK.
EXTRA_BUNDLE,
EXTRA_STRING_BREADCRUMB,
Constant Field Valuespublic static final java.lang.String ACTION_FIRE_SETTING
Intent action String broadcast by Locale to fire a plug-in setting. When Locale
broadcasts this Intent, it will be sent directly to the package and class of the plug-in's
BroadcastReceiver. The Intent will contain a EXTRA_BUNDLE that was previously
set by the Activity result of ACTION_EDIT_SETTING.
There MUST be only one BroadcastReceiver per APK that implements this Intent.
EXTRA_BUNDLE,
Constant Field Valuespublic static final java.lang.String ACTION_EDIT_CONDITION
Intent action String broadcast by Locale to create or edit a plug-in condition. When
Locale broadcasts this Intent, it will be sent directly to the package and class of the
plug-in's Activity. The Intent may contain a store-and-forward EXTRA_BUNDLE
that was previously set by the Activity result of ACTION_EDIT_CONDITION.
There SHOULD be only one Activity per APK that implements this Intent. If a single APK
wishes to export multiple plug-ins, it MAY implement multiple Activity instances that implement this
Intent, however there must only be a single ACTION_QUERY_CONDITION receiver. In this
scenario, it is the responsibility of the Activities to store enough data in EXTRA_BUNDLE to
allow this receiver to disambiguate which "plug-in" is being queried. To avoid user confusion, it is
recommended that only a single plug-in be implemented per APK.
EXTRA_BUNDLE,
EXTRA_STRING_BREADCRUMB,
Constant Field Valuespublic static final java.lang.String ACTION_QUERY_CONDITION
Intent action String broadcast by Locale to query a plug-in condition. When
Locale broadcasts this Intent, it will be sent directly to the package and class of the
plug-in's BroadcastReceiver. The Intent will contain a EXTRA_BUNDLE that was
previously set by the Activity result of ACTION_EDIT_CONDITION.
Since this is an ordered broadcast, the receiver is expected to set an appropriate result code from
RESULT_CONDITION_SATISFIED, RESULT_CONDITION_UNSATISFIED, and
RESULT_CONDITION_UNKNOWN.
There MUST be only one BroadcastReceiver per APK that implements this Intent.
EXTRA_BUNDLE,
RESULT_CONDITION_SATISFIED,
RESULT_CONDITION_UNSATISFIED,
RESULT_CONDITION_UNKNOWN,
Constant Field Valuespublic static final java.lang.String ACTION_REQUEST_QUERY
Intent action String to notify Locale that a plug-in condition is requesting that
Locale query it via ACTION_QUERY_CONDITION. This merely serves as a hint to Locale that a
condition wants to be queried. There is no guarantee as to when or if the plug-in will be queried after
this Intent is broadcast. If Locale does not respond to the plug-in condition after a
ACTION_REQUEST_QUERY Intent is sent, the plug-in SHOULD shut itself down and stop requesting
requeries. A lack of response from Locale indicates that Locale is not currently interested in this
plug-in. When Locale becomes interested in the plug-in again, Locale will send
ACTION_QUERY_CONDITION.
The extra EXTRA_ACTIVITY MUST be included, otherwise Locale will ignore this Intent.
Plug-in conditions SHOULD NOT use this unless there is some sort of asynchronous event that has
occurred, such as a broadcast Intent being received by the plug-in. Plug-ins SHOULD NOT
periodically request a requery as a way of implementing polling behavior.
EXTRA_ACTIVITY,
Constant Field Valuespublic static final java.lang.String EXTRA_STRING_BREADCRUMB
String
Maps to a String that represents the Activity bread crumb path.
BreadCrumber,
Constant Field Valuespublic static final java.lang.String EXTRA_STRING_BLURB
String
Maps to a String that represents a blurb. This is returned as an Activity result extra
from ACTION_EDIT_CONDITION or ACTION_EDIT_SETTING.
The blurb is a concise description displayed to the user of what the plug-in is configured to do.
public static final java.lang.String EXTRA_BUNDLE
Bundle
Maps to a Bundle that contains all of a plug-in's extras.
Plug-ins MUST NOT store Parcelable objects in this Bundle, because Parcelable
is not a long-term storage format. Also, plug-ins MUST NOT store any serializable object that is not
exposed by the Android SDK.
The maximum size of a Bundle that can be sent across process boundaries is on the order of 500 kilobytes (base-10), while Locale further limits plug-in Bundles to about 100 kilobytes (base-10). Although the maximum size is about 100 kilobytes, plug-ins SHOULD keep Bundles much smaller for performance and memory usage reasons.
public static final java.lang.String EXTRA_ACTIVITY
String
Maps to a String that represents the name of a plug-in's Activity.
ACTION_REQUEST_QUERY,
Constant Field Values
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||