summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorsmain@google.com <smain@google.com>2014-10-01 18:25:13 -0700
committerScott Main <smain@google.com>2014-10-02 01:26:59 +0000
commit77c81df2a2402659db86d1d8eb0ebd6edefd339a (patch)
treed0658e4eed01992dcc7fa8fd397942027c5d7d8f /docs
parentc338784bf6bfcce3cd7db40f46b0e6c815e9ed3a (diff)
downloadframeworks_base-77c81df2a2402659db86d1d8eb0ebd6edefd339a.zip
frameworks_base-77c81df2a2402659db86d1d8eb0ebd6edefd339a.tar.gz
frameworks_base-77c81df2a2402659db86d1d8eb0ebd6edefd339a.tar.bz2
fix confusing sentence
https://memegen.googleplex.com/5524829602054144 Change-Id: I451c167bd1aedbde4b0e676f5f74a9dacb20fc10
Diffstat (limited to 'docs')
-rw-r--r--docs/html/training/basics/fragments/fragment-ui.jd6
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&mdash;especially those that you add at
-runtime&mdash;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&mdash;especially when adding fragments at
+runtime&mdash;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