diff options
author | Mark Doliner <mark@kingant.net> | 2014-08-27 16:04:02 -0700 |
---|---|---|
committer | Mark Doliner <mark@kingant.net> | 2014-09-05 13:57:51 -0700 |
commit | d0646dca40ff740bd49755ad60751678b0ccca52 (patch) | |
tree | 8e1cf2b4efebac703e253a1f14abc34557e8154e /core/java/android/app/Fragment.java | |
parent | 2d3571cc17a5a6b1072951227d889ce14a3f88cf (diff) | |
download | frameworks_base-d0646dca40ff740bd49755ad60751678b0ccca52.zip frameworks_base-d0646dca40ff740bd49755ad60751678b0ccca52.tar.gz frameworks_base-d0646dca40ff740bd49755ad60751678b0ccca52.tar.bz2 |
Small documentation fixes across many files.
Change-Id: I3e8787ce4bc6018ea1dc9aef2a2cd4e0a8dde663
Diffstat (limited to 'core/java/android/app/Fragment.java')
-rw-r--r-- | core/java/android/app/Fragment.java | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/core/java/android/app/Fragment.java b/core/java/android/app/Fragment.java index d626e5f..4db07bb8 100644 --- a/core/java/android/app/Fragment.java +++ b/core/java/android/app/Fragment.java @@ -212,8 +212,8 @@ final class FragmentState implements Parcelable { * state of its view hierarchy has been restored. * <li> {@link #onStart} makes the fragment visible to the user (based on its * containing activity being started). - * <li> {@link #onResume} makes the fragment interacting with the user (based on its - * containing activity being resumed). + * <li> {@link #onResume} makes the fragment begin interacting with the user + * (based on its containing activity being resumed). * </ol> * * <p>As a fragment is no longer being used, it goes through a reverse @@ -543,7 +543,7 @@ public class Fragment implements ComponentCallbacks2, OnCreateContextMenuListene * and later retrieved by the Fragment with {@link #getArguments}. * * <p>Applications should generally not implement a constructor. The - * first place application code an run where the fragment is ready to + * first place application code can run where the fragment is ready to * be used is in {@link #onAttach(Activity)}, the point where the fragment * is actually associated with its activity. Some applications may also * want to implement {@link #onInflate} to retrieve attributes from a @@ -699,8 +699,7 @@ public class Fragment implements ComponentCallbacks2, OnCreateContextMenuListene } /** - * Return the arguments supplied when the fragment was instantiated, - * if any. + * Return the arguments supplied to {@link #setArguments}, if any. */ final public Bundle getArguments() { return mArguments; |