android.support.v4.content
Class IntentCompat

java.lang.Object
  extended by android.support.v4.content.IntentCompat

public class IntentCompat
extends java.lang.Object

Helper for accessing features in android.content.Intent introduced after API level 4 in a backwards compatible fashion.


Field Summary
static java.lang.String ACTION_EXTERNAL_APPLICATIONS_AVAILABLE
          Broadcast Action: Resources for a set of packages (which were previously unavailable) are currently available since the media on which they exist is available.
static java.lang.String ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE
          Broadcast Action: Resources for a set of packages are currently unavailable since the media on which they exist is unavailable.
static java.lang.String EXTRA_CHANGED_PACKAGE_LIST
          This field is part of android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_AVAILABLE, android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE and contains a string array of all of the components that have changed.
static java.lang.String EXTRA_CHANGED_UID_LIST
          This field is part of android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_AVAILABLE, android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE and contains an integer array of uids of all of the components that have changed.
static java.lang.String EXTRA_HTML_TEXT
          A constant String that is associated with the Intent, used with android.content.Intent#ACTION_SEND to supply an alternative to android.content.Intent#EXTRA_TEXT as HTML formatted text.
static int FLAG_ACTIVITY_CLEAR_TASK
          If set in an Intent passed to Context.startActivity(), this flag will cause any existing task that would be associated with the activity to be cleared before the activity is started.
static int FLAG_ACTIVITY_TASK_ON_HOME
          If set in an Intent passed to Context.startActivity(), this flag will cause a newly launching task to be placed on top of the current home activity task (if there is one).
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ACTION_EXTERNAL_APPLICATIONS_AVAILABLE

public static final java.lang.String ACTION_EXTERNAL_APPLICATIONS_AVAILABLE
Broadcast Action: Resources for a set of packages (which were previously unavailable) are currently available since the media on which they exist is available. The extra data EXTRA_CHANGED_PACKAGE_LIST contains a list of packages whose availability changed. The extra data EXTRA_CHANGED_UID_LIST contains a list of uids of packages whose availability changed. Note that the packages in this list do not receive this broadcast. The specified set of packages are now available on the system.

Includes the following extras:

This is a protected intent that can only be sent by the system.

See Also:
Constant Field Values

ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE

public static final java.lang.String ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE
Broadcast Action: Resources for a set of packages are currently unavailable since the media on which they exist is unavailable. The extra data EXTRA_CHANGED_PACKAGE_LIST contains a list of packages whose availability changed. The extra data EXTRA_CHANGED_UID_LIST contains a list of uids of packages whose availability changed. The specified set of packages can no longer be launched and are practically unavailable on the system.

Inclues the following extras:

This is a protected intent that can only be sent by the system.

See Also:
Constant Field Values

EXTRA_CHANGED_PACKAGE_LIST

public static final java.lang.String EXTRA_CHANGED_PACKAGE_LIST
This field is part of android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_AVAILABLE, android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE and contains a string array of all of the components that have changed.

See Also:
Constant Field Values

EXTRA_CHANGED_UID_LIST

public static final java.lang.String EXTRA_CHANGED_UID_LIST
This field is part of android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_AVAILABLE, android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE and contains an integer array of uids of all of the components that have changed.

See Also:
Constant Field Values

EXTRA_HTML_TEXT

public static final java.lang.String EXTRA_HTML_TEXT
A constant String that is associated with the Intent, used with android.content.Intent#ACTION_SEND to supply an alternative to android.content.Intent#EXTRA_TEXT as HTML formatted text. Note that you must also supply android.content.Intent#EXTRA_TEXT.

See Also:
Constant Field Values

FLAG_ACTIVITY_TASK_ON_HOME

public static final int FLAG_ACTIVITY_TASK_ON_HOME
If set in an Intent passed to Context.startActivity(), this flag will cause a newly launching task to be placed on top of the current home activity task (if there is one). That is, pressing back from the task will always return the user to home even if that was not the last activity they saw. This can only be used in conjunction with android.content.Intent#FLAG_ACTIVITY_NEW_TASK.

See Also:
Constant Field Values

FLAG_ACTIVITY_CLEAR_TASK

public static final int FLAG_ACTIVITY_CLEAR_TASK
If set in an Intent passed to Context.startActivity(), this flag will cause any existing task that would be associated with the activity to be cleared before the activity is started. That is, the activity becomes the new root of an otherwise empty task, and any old activities are finished. This can only be used in conjunction with android.content.Intent#FLAG_ACTIVITY_NEW_TASK.

This flag will only be obeyed on devices supporting API 11 or higher.

See Also:
Constant Field Values