diff options
| author | Sunny Goyal <sunnygoyal@google.com> | 2020-03-13 14:02:11 -0700 |
|---|---|---|
| committer | Sunny Goyal <sunnygoyal@google.com> | 2020-03-13 14:02:32 -0700 |
| commit | 296d4b5821268edb17edfd900e856ab8a47148ba (patch) | |
| tree | 23031a911b00f6ee7b301ef4e286e2c5b8a436a1 /core/java/android/widget/RemoteViews.java | |
| parent | e9b4b0009b8b6f5e5a3cb6ed8ea0a5cce0ac8ac2 (diff) | |
Updating widgets docs
Bug: 151195866
Test: N/A
Change-Id: Ice98b876c64653bde7337ac123746392790dea1b
Diffstat (limited to 'core/java/android/widget/RemoteViews.java')
| -rw-r--r-- | core/java/android/widget/RemoteViews.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/widget/RemoteViews.java b/core/java/android/widget/RemoteViews.java index 01a0e9b15463..7f6c0d2077f1 100644 --- a/core/java/android/widget/RemoteViews.java +++ b/core/java/android/widget/RemoteViews.java @@ -2818,7 +2818,7 @@ public class RemoteViews implements Parcelable, Filter { /** * When using collections (eg. {@link ListView}, {@link StackView} etc.) in widgets, it is very - * costly to set PendingIntents on the individual items, and is hence not permitted. Instead + * costly to set PendingIntents on the individual items, and is hence not recommended. Instead * this method should be used to set a single PendingIntent template on the collection, and * individual items can differentiate their on-click behavior using * {@link RemoteViews#setOnClickFillInIntent(int, Intent)}. @@ -2834,7 +2834,7 @@ public class RemoteViews implements Parcelable, Filter { /** * When using collections (eg. {@link ListView}, {@link StackView} etc.) in widgets, it is very - * costly to set PendingIntents on the individual items, and is hence not permitted. Instead + * costly to set PendingIntents on the individual items, and is hence not recommended. Instead * a single PendingIntent template can be set on the collection, see {@link * RemoteViews#setPendingIntentTemplate(int, PendingIntent)}, and the individual on-click * action of a given item can be distinguished by setting a fillInIntent on that item. The @@ -3960,7 +3960,7 @@ public class RemoteViews implements Parcelable, Filter { /** * When using collections (eg. {@link ListView}, {@link StackView} etc.) in widgets, it is - * very costly to set PendingIntents on the individual items, and is hence not permitted. + * very costly to set PendingIntents on the individual items, and is hence not recommended. * Instead a single PendingIntent template can be set on the collection, see {@link * RemoteViews#setPendingIntentTemplate(int, PendingIntent)}, and the individual on-click * action of a given item can be distinguished by setting a fillInIntent on that item. The |
