diff options
author | smain@google.com <smain@google.com> | 2014-10-02 15:16:41 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-10-02 15:16:41 +0000 |
commit | aaf38de492a669eb91e04236f0b1004c5c6241af (patch) | |
tree | 0bb8c5224a0a0dc18d1ce5d10dafa44fefae614a /docs | |
parent | 7aaefa52e034c924a9c536fe378bb8b47efcfdb4 (diff) | |
parent | 629e2f54832540133227a5bb5ce999fef0d7b0be (diff) | |
download | frameworks_base-aaf38de492a669eb91e04236f0b1004c5c6241af.zip frameworks_base-aaf38de492a669eb91e04236f0b1004c5c6241af.tar.gz frameworks_base-aaf38de492a669eb91e04236f0b1004c5c6241af.tar.bz2 |
am 629e2f54: am 94f04cbe: am 74c2ec36: Merge "fix confusing sentence https://memegen.googleplex.com/5524829602054144" into lmp-dev
* commit '629e2f54832540133227a5bb5ce999fef0d7b0be':
fix confusing sentence https://memegen.googleplex.com/5524829602054144
Diffstat (limited to 'docs')
-rw-r--r-- | docs/html/training/basics/fragments/fragment-ui.jd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/html/training/basics/fragments/fragment-ui.jd b/docs/html/training/basics/fragments/fragment-ui.jd index 14469bf..4fa5b70 100644 --- a/docs/html/training/basics/fragments/fragment-ui.jd +++ b/docs/html/training/basics/fragments/fragment-ui.jd @@ -66,9 +66,9 @@ and perform other fragment transactions.</p> initial fragment(s) to the activity during the activity's {@link android.app.Activity#onCreate onCreate()} method.</p> -<p>An important rule when dealing with fragments—especially those that you add at -runtime—is that the fragment must have a container {@link android.view.View} in the layout in -which the fragment's layout will reside.</p> +<p>An important rule when dealing with fragments—especially when adding fragments at +runtime—is that your activity layout must include a container {@link android.view.View} +in which you can insert the fragment.</p> <p>The following layout is an alternative to the layout shown in the <a href="creating.html">previous lesson</a> that shows only one fragment at a time. In order to replace |