summaryrefslogtreecommitdiff
path: root/core/java/android/widget/RemoteViews.java
diff options
context:
space:
mode:
authorElliot Waite <elliotwaite@google.com>2017-01-26 04:44:54 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-01-26 04:44:54 +0000
commit9b21265b2ce0f57796bffb241c008fff459d4b05 (patch)
tree482772e30f52d984b41e3bddd68c5614c3c5449a /core/java/android/widget/RemoteViews.java
parent0946c26b39d66e89fb83d1d51e7c68d7fb3e8f16 (diff)
parent28ba4722a9e77ce98de454ed2ac862e44f496632 (diff)
Fix @links in reference docs. am: 54de77470d am: ab978c035e
am: 28ba4722a9 Change-Id: I98177a8cf0a20677e140406bb7371474ca259e5b
Diffstat (limited to 'core/java/android/widget/RemoteViews.java')
-rw-r--r--core/java/android/widget/RemoteViews.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/widget/RemoteViews.java b/core/java/android/widget/RemoteViews.java
index 7cc539cba2fc..04ae2627e6df 100644
--- a/core/java/android/widget/RemoteViews.java
+++ b/core/java/android/widget/RemoteViews.java
@@ -2642,8 +2642,8 @@ public class RemoteViews implements Parcelable, Filter {
*
* When setting the on-click action of items within collections (eg. {@link ListView},
* {@link StackView} etc.), this method will not work. Instead, use {@link
- * RemoteViews#setPendingIntentTemplate(int, PendingIntent) in conjunction with
- * RemoteViews#setOnClickFillInIntent(int, Intent).
+ * RemoteViews#setPendingIntentTemplate(int, PendingIntent)} in conjunction with
+ * {@link RemoteViews#setOnClickFillInIntent(int, Intent)}.
*
* @param viewId The id of the view that will trigger the {@link PendingIntent} when clicked
* @param pendingIntent The {@link PendingIntent} to send when user clicks
@@ -3228,7 +3228,7 @@ public class RemoteViews implements Parcelable, Filter {
* Applies the views asynchronously, moving as much of the task on the background
* thread as possible.
*
- * @see {@link #apply(Context, ViewGroup)}
+ * @see #apply(Context, ViewGroup)
* @param context Default context to use
* @param parent Parent that the resulting view hierarchy will be attached to. This method
* does <strong>not</strong> attach the hierarchy. The caller should do so when appropriate.
@@ -3383,7 +3383,7 @@ public class RemoteViews implements Parcelable, Filter {
* Applies all the actions to the provided view, moving as much of the task on the background
* thread as possible.
*
- * @see {@link #reapply(Context, View)}
+ * @see #reapply(Context, View)
* @param context Default context to use
* @param v The view to apply the actions to. This should be the result of
* the {@link #apply(Context,ViewGroup)} call.