From fa4348591050593753c88fc7499593837dd99c4c Mon Sep 17 00:00:00 2001 From: Mark Lu Date: Thu, 11 Aug 2016 17:40:33 -0700 Subject: [PATCH] docs: fix broken links in Activity reference Bug: 30142414 Bug: 30837469 Change-Id: If370e49fee32df41b7dab93d6c89c79a9835dabb --- core/java/android/app/Activity.java | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/core/java/android/app/Activity.java b/core/java/android/app/Activity.java index ae3e0ce201a48..b1a578d8f7ac8 100644 --- a/core/java/android/app/Activity.java +++ b/core/java/android/app/Activity.java @@ -175,11 +175,11 @@ import java.util.List; * part of the platform's application model. For a detailed perspective on the structure of an * Android application and how activities behave, please read the * Application Fundamentals and - * Tasks and Back Stack + * Tasks and Back Stack * developer guides.

* *

You can also find a detailed discussion about how to create activities in the - * Activities + * Activities * developer guide.

* * @@ -3366,7 +3366,7 @@ public class Activity extends ContextThemeWrapper * should override the method {@link #onPrepareNavigateUpTaskStack(TaskStackBuilder)} * to supply those arguments.

* - *

See Tasks and Back Stack + *

See Tasks and Back Stack * from the developer guide and Navigation * from the design guide for more information about navigating within your app.

* @@ -4467,7 +4467,7 @@ public class Activity extends ContextThemeWrapper * * @throws android.content.ActivityNotFoundException * - * @see {@link #startActivity(Intent, Bundle)} + * @see #startActivity(Intent, Bundle) * @see #startActivityForResult */ @Override @@ -4494,7 +4494,7 @@ public class Activity extends ContextThemeWrapper * * @throws android.content.ActivityNotFoundException * - * @see {@link #startActivity(Intent)} + * @see #startActivity(Intent) * @see #startActivityForResult */ @Override @@ -4516,7 +4516,7 @@ public class Activity extends ContextThemeWrapper * * @throws android.content.ActivityNotFoundException * - * @see {@link #startActivities(Intent[], Bundle)} + * @see #startActivities(Intent[], Bundle) * @see #startActivityForResult */ @Override @@ -4543,7 +4543,7 @@ public class Activity extends ContextThemeWrapper * * @throws android.content.ActivityNotFoundException * - * @see {@link #startActivities(Intent[])} + * @see #startActivities(Intent[]) * @see #startActivityForResult */ @Override @@ -4923,7 +4923,7 @@ public class Activity extends ContextThemeWrapper *

As of {@link android.os.Build.VERSION_CODES#JELLY_BEAN} an alternative * to using this with starting activities is to supply the desired animation * information through a {@link ActivityOptions} bundle to - * {@link #startActivity(Intent, Bundle) or a related function. This allows + * {@link #startActivity(Intent, Bundle)} or a related function. This allows * you to specify a custom animation even when starting an activity from * outside the context of the current top activity. * @@ -6105,7 +6105,6 @@ public class Activity extends ContextThemeWrapper * the return value must be checked. * * @see #onVisibleBehindCanceled() - * @see #onBackgroundVisibleBehindChanged(boolean) */ public boolean requestVisibleBehind(boolean visible) { if (!mResumed) { @@ -6133,7 +6132,6 @@ public class Activity extends ContextThemeWrapper * process. Otherwise {@link #onStop()} will be called following return. * * @see #requestVisibleBehind(boolean) - * @see #onBackgroundVisibleBehindChanged(boolean) */ @CallSuper public void onVisibleBehindCanceled() {