diff --git a/core/java/android/app/Activity.java b/core/java/android/app/Activity.java
index 13cf46d115199..ae3e0ce201a48 100644
--- a/core/java/android/app/Activity.java
+++ b/core/java/android/app/Activity.java
@@ -306,7 +306,7 @@ import java.util.List;
*
*
*
- * | {@link android.app.Activity#onCreate onCreate()} |
+ *
|---|
| {@link android.app.Activity#onCreate onCreate()} |
* Called when the activity is first created.
* This is where you should do all of your normal static set up:
* create views, bind data to lists, etc. This method also
@@ -318,7 +318,7 @@ import java.util.List;
* |
*
* | |
- * {@link android.app.Activity#onRestart onRestart()} |
+ * {@link android.app.Activity#onRestart onRestart()} |
* Called after your activity has been stopped, prior to it being
* started again.
* Always followed by onStart() |
@@ -326,7 +326,7 @@ import java.util.List;
* onStart() |
*
*
- * | {@link android.app.Activity#onStart onStart()} |
+ *
|---|
| {@link android.app.Activity#onStart onStart()} |
* Called when the activity is becoming visible to the user.
* Followed by onResume() if the activity comes
* to the foreground, or onStop() if it becomes hidden. |
@@ -335,7 +335,7 @@ import java.util.List;
*
*
* | |
- * {@link android.app.Activity#onResume onResume()} |
+ * {@link android.app.Activity#onResume onResume()} |
* Called when the activity will start
* interacting with the user. At this point your activity is at
* the top of the activity stack, with user input going to it.
@@ -344,7 +344,7 @@ import java.util.List;
* | onPause() |
*
*
- * | {@link android.app.Activity#onPause onPause()} |
+ *
|---|
| {@link android.app.Activity#onPause onPause()} |
* Called when the system is about to start resuming a previous
* activity. This is typically used to commit unsaved changes to
* persistent data, stop animations and other things that may be consuming
@@ -358,7 +358,7 @@ import java.util.List;
* onStop() |
*
*
- * | {@link android.app.Activity#onStop onStop()} |
+ *
|---|
| {@link android.app.Activity#onStop onStop()} |
* Called when the activity is no longer visible to the user, because
* another activity has been resumed and is covering this one. This
* may happen either because a new activity is being started, an existing
@@ -372,7 +372,7 @@ import java.util.List;
* onDestroy() |
*
*
- * | {@link android.app.Activity#onDestroy onDestroy()} |
+ *
|---|
| {@link android.app.Activity#onDestroy onDestroy()} |
* The final call you receive before your
* activity is destroyed. This can happen either because the
* activity is finishing (someone called {@link Activity#finish} on
|