LauncherApps.PinItemRequest
  public
  static
  final
  
  class
  LauncherApps.PinItemRequest
  
    extends Object
  
  
  
  
  
      implements
      
        Parcelable
      
  
  
| java.lang.Object | |
| ↳ | android.content.pm.LauncherApps.PinItemRequest | 
Represents a "pin shortcut" or a "pin appwidget" request made by an app, which is sent with
 an LauncherApps.ACTION_CONFIRM_PIN_SHORTCUT or LauncherApps.ACTION_CONFIRM_PIN_APPWIDGET intent
 respectively to the default launcher app.
 
Request of the REQUEST_TYPE_SHORTCUT type.
 A REQUEST_TYPE_SHORTCUT request represents a request to pin a
 ShortcutInfo.  If the launcher accepts a request, call accept(),
 or accept(android.os.Bundle) with a null or empty Bundle.  No options are defined for
 pin-shortcuts requests.
 
getShortcutInfo() always returns a non-null ShortcutInfo for this type.
 
The launcher may receive a request with a ShortcutInfo that is already pinned, in
 which case ShortcutInfo.isPinned() returns true.  This means the user wants to create
 another pinned shortcut for a shortcut that's already pinned.  If the launcher accepts it,
 accept() must still be called even though the shortcut is already pinned, and
 create a new pinned shortcut icon for it.
 
See also ShortcutManager for more details.
 
Request of the REQUEST_TYPE_APPWIDGET type.
 A REQUEST_TYPE_SHORTCUT request represents a request to pin a
 an AppWidget.  If the launcher accepts a request, call accept(android.os.Bundle) with
 the appwidget integer ID set to the
 AppWidgetManager.EXTRA_APPWIDGET_ID extra.
 
getAppWidgetProviderInfo(android.content.Context) always returns a non-null
 AppWidgetProviderInfo for this type.
 
See also AppWidgetManager for more details.
Summary
| Constants | |
|---|---|
| int | REQUEST_TYPE_APPWIDGETThis is a request to pin app widget. | 
| int | REQUEST_TYPE_SHORTCUTThis is a request to pin shortcut. | 
| Inherited constants | 
|---|
| Fields | |
|---|---|
| 
    public
    static
    final
    Creator<LauncherApps.PinItemRequest> | CREATOR
 | 
| Public methods | |
|---|---|
| 
        
        
        
        
        
        boolean | 
      accept(Bundle options)
      Called by the receiving launcher app when the user accepts the request. | 
| 
        
        
        
        
        
        boolean | 
      accept()
      Called by the receiving launcher app when the user accepts the request, with no options. | 
| 
        
        
        
        
        
        int | 
      describeContents()
      Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. | 
| 
        
        
        
        
        
        AppWidgetProviderInfo | 
      getAppWidgetProviderInfo(Context context)
      
 | 
| 
        
        
        
        
        
        Bundle | 
      getExtras()
      Any extras sent by the requesting app. | 
| 
        
        
        
        
        
        int | 
      getRequestType()
      Represents the type of a request, which is one of the  | 
| 
        
        
        
        
        
        ShortcutInfo | 
      getShortcutInfo()
      
 | 
| 
        
        
        
        
        
        boolean | 
      isValid()
      Return whether a request is still valid. | 
| 
        
        
        
        
        
        void | 
      writeToParcel(Parcel dest, int flags)
      Flatten this object in to a Parcel. | 
| Inherited methods | |
|---|---|
Constants
REQUEST_TYPE_APPWIDGET
public static final int REQUEST_TYPE_APPWIDGET
This is a request to pin app widget.
Constant Value: 2 (0x00000002)
REQUEST_TYPE_SHORTCUT
public static final int REQUEST_TYPE_SHORTCUT
This is a request to pin shortcut.
Constant Value: 1 (0x00000001)
Fields
Public methods
accept
public boolean accept (Bundle options)
Called by the receiving launcher app when the user accepts the request.
| Parameters | |
|---|---|
| options | Bundle: must be set for aREQUEST_TYPE_APPWIDGETrequest.
 This value may benull. | 
| Returns | |
|---|---|
| boolean | TRUEif the shortcut or the AppWidget has actually been pinned.FALSEif the item hasn't been pinned, for example, because the request had
 already been canceled, in which case the launcher must not pin the requested item. | 
accept
public boolean accept ()
Called by the receiving launcher app when the user accepts the request, with no options.
| Returns | |
|---|---|
| boolean | TRUEif the shortcut or the AppWidget has actually been pinned.FALSEif the item hasn't been pinned, for example, because the request had
 already been canceled, in which case the launcher must not pin the requested item. | 
describeContents
public int describeContents ()
Describe the kinds of special objects contained in this Parcelable
 instance's marshaled representation. For example, if the object will
 include a file descriptor in the output of writeToParcel(android.os.Parcel, int),
 the return value of this method must include the
 CONTENTS_FILE_DESCRIPTOR bit.
| Returns | |
|---|---|
| int | a bitmask indicating the set of special object types marshaled
 by this Parcelable object instance.
 Value is either 0orCONTENTS_FILE_DESCRIPTOR | 
getAppWidgetProviderInfo
public AppWidgetProviderInfo getAppWidgetProviderInfo (Context context)
AppWidgetProviderInfo sent by the requesting app.
 Always non-null for a REQUEST_TYPE_APPWIDGET request, and always null for a
 different request type.
 
Launcher should not show any configuration activity associated with the provider, and
 assume that the widget is already fully configured. Upon accepting the widget, it should
 pass the widgetId in accept(android.os.Bundle).
| Parameters | |
|---|---|
| context | Context | 
| Returns | |
|---|---|
| AppWidgetProviderInfo | requested AppWidgetProviderInfowhen a request is of theREQUEST_TYPE_APPWIDGETtype.  Null otherwise. | 
getExtras
public Bundle getExtras ()
Any extras sent by the requesting app.
| Returns | |
|---|---|
| Bundle | For a shortcut request, this method always return null.  For an AppWidget
 request, this method returns the extras passed to the AppWidgetManager.requestPinAppWidget(ComponentName, Bundle, PendingIntent)API.  SeeAppWidgetManagerfor details. | 
getRequestType
public int getRequestType ()
Represents the type of a request, which is one of the REQUEST_TYPE_ constants.
| Returns | |
|---|---|
| int | one of the REQUEST_TYPE_constants.
 Value isREQUEST_TYPE_SHORTCUT, orREQUEST_TYPE_APPWIDGET | 
getShortcutInfo
public ShortcutInfo getShortcutInfo ()
ShortcutInfo sent by the requesting app.
 Always non-null for a REQUEST_TYPE_SHORTCUT request, and always null for a
 different request type.
| Returns | |
|---|---|
| ShortcutInfo | requested ShortcutInfowhen a request is of theREQUEST_TYPE_SHORTCUTtype.  Null otherwise. | 
isValid
public boolean isValid ()
Return whether a request is still valid.
| Returns | |
|---|---|
| boolean | TRUEif a request is valid andaccept(android.os.Bundle)may be called. | 
writeToParcel
public void writeToParcel (Parcel dest, int flags)
Flatten this object in to a Parcel.
| Parameters | |
|---|---|
| dest | Parcel: The Parcel in which the object should be written.
 This value cannot benull. | 
| flags | int: Additional flags about how the object should be written.
 May be 0 orParcelable.PARCELABLE_WRITE_RETURN_VALUE.
 Value is either0or a combination ofParcelable.PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES | 
