diff options
| author | Jim Miller <jaggies@google.com> | 2012-09-12 20:32:50 -0700 |
|---|---|---|
| committer | Michael Jurka <mikejurka@google.com> | 2012-09-14 12:31:24 -0700 |
| commit | f229e4d3eb8f910c181f96416c6798f6f305a395 (patch) | |
| tree | d480cb618c10712a3f3498037f2a4084a5300a07 /core/java/android/appwidget/AppWidgetManager.java | |
| parent | 49321ec4fb30ab0c709c1e808701f63f38f8cbe7 (diff) | |
Add support for settings for lock widgets
Change-Id: Iade094c6f32a7653bdbbd4921d345d68f2443ff4
Diffstat (limited to 'core/java/android/appwidget/AppWidgetManager.java')
| -rw-r--r-- | core/java/android/appwidget/AppWidgetManager.java | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/core/java/android/appwidget/AppWidgetManager.java b/core/java/android/appwidget/AppWidgetManager.java index 0a2a6f67eb99..6fb6dc43ac09 100644 --- a/core/java/android/appwidget/AppWidgetManager.java +++ b/core/java/android/appwidget/AppWidgetManager.java @@ -218,18 +218,26 @@ public class AppWidgetManager { /** * An intent extra to pass to the AppWidget picker which allows the picker to filter * the list based on the {@link AppWidgetProviderInfo#widgetCategory}. + * + * @hide */ - /** @hide */ public static final String EXTRA_CATEGORY_FILTER = "categoryFilter"; /** * An intent extra to pass to the AppWidget picker which allows the picker to filter * the list based on the {@link AppWidgetProviderInfo#widgetFeatures}. + * @hide */ - /** @hide */ public static final String EXTRA_FEATURES_FILTER = "featuresFilter"; /** + * An intent extra to pass to the AppWidget picker to specify whether or not to sort + * the list of caller-specified extra AppWidgets along with the rest of the AppWidgets + * @hide + */ + public static final String EXTRA_CUSTOM_SORT = "customSort"; + + /** * A sentiel value that the AppWidget manager will never return as a appWidgetId. */ public static final int INVALID_APPWIDGET_ID = 0; |
