summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Adam Lesinski <adamlesinski@google.com> 2016-07-27 16:33:15 -0700
committer Adam Lesinski <adamlesinski@google.com> 2016-07-28 19:06:53 +0000
commit79a5b91d0da28a5e9d2a1bd68a32b24fee7de562 (patch)
tree8f9e4634403c7399b3d0d52e3eff495e56685860
parent9bb0869926c23a94b38bbe467b2833737076821f (diff)
Fix nesting of sample XML code in complex-resources doc
Bug:30447181 Change-Id: Icea1580f6d919585d488befd62bfa16be7b4a0a6 (cherry picked from commit 4d1e2adf60fc99f76a9814eeb58c7d2d98bc4699)
-rw-r--r--docs/html/guide/topics/resources/complex-xml-resources.jd4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/guide/topics/resources/complex-xml-resources.jd b/docs/html/guide/topics/resources/complex-xml-resources.jd
index 66dcb58347ab..ebf7bc3f0228 100644
--- a/docs/html/guide/topics/resources/complex-xml-resources.jd
+++ b/docs/html/guide/topics/resources/complex-xml-resources.jd
@@ -93,8 +93,7 @@ Since we’re making an animated vector drawable, we put the file under <code>re
&lt;/vector&gt;
<strong>&lt;aapt:attr /&gt;</strong>
- &lt;target
- android:name="rotationGroup" /&gt;
+ &lt;target android:name="rotationGroup"&gt;
       <strong>&lt;aapt:attr name="android:animation" &gt;</strong>
&lt;objectAnimator
android:duration="6000"
@@ -102,6 +101,7 @@ Since we’re making an animated vector drawable, we put the file under <code>re
android:valueFrom="0"

    android:valueTo="360" /&gt;
<strong>&lt;aapt:attr&gt;</strong>
+ &lt;/target&gt;
&lt;/animated-vector&gt;
</pre>
</dd>