summaryrefslogtreecommitdiffstats
path: root/docs/html/training/basics/firstapp/building-ui.jd
diff options
context:
space:
mode:
authorRicardo Cervera <rcervera@google.com>2014-03-12 16:02:51 -0700
committerRicardo Cervera <rcervera@google.com>2014-03-13 14:59:59 -0700
commit420d97fbc8eb573c1e200e9d3d46668b00990e7a (patch)
tree91eb57545c07c84da65cf6aeb885cc9b73848dbe /docs/html/training/basics/firstapp/building-ui.jd
parent07c0ad973a2fdd8a35b3627e69f1134673c8b8e0 (diff)
downloadframeworks_base-420d97fbc8eb573c1e200e9d3d46668b00990e7a.zip
frameworks_base-420d97fbc8eb573c1e200e9d3d46668b00990e7a.tar.gz
frameworks_base-420d97fbc8eb573c1e200e9d3d46668b00990e7a.tar.bz2
docs: Updated Building your First App tutorial. Bug: 13429905
-Updated default code in activities from ADT -Updated screenshots for ADT wizards when changed -Updated activity_ with fragment_ where required -Other minor changes Stage: http://quixote.mtv:8004/training/basics/firstapp/creating-project.html Patch: Removed border from the new ADT screenshots. Patch: Replaced device screenshots using an Android 4.4 device. Patch: Addressed Katie's comments. Change-Id: Ic0acf714b1b5913f1f82d6eafac53666a721dfe4
Diffstat (limited to 'docs/html/training/basics/firstapp/building-ui.jd')
-rw-r--r--docs/html/training/basics/firstapp/building-ui.jd7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/html/training/basics/firstapp/building-ui.jd b/docs/html/training/basics/firstapp/building-ui.jd
index 2615bee..179b3ac 100644
--- a/docs/html/training/basics/firstapp/building-ui.jd
+++ b/docs/html/training/basics/firstapp/building-ui.jd
@@ -75,16 +75,16 @@ content of the text field to another activity.</p>
<h2 id="LinearLayout">Create a Linear Layout</h2>
-<p>Open the <code>activity_main.xml</code> file from the <code>res/layout/</code>
+<p>Open the <code>fragment_main.xml</code> file from the <code>res/layout/</code>
directory.</p>
<p class="note"><strong>Note:</strong> In Eclipse, when you open a layout file, you’re first shown
the Graphical Layout editor. This is an editor that helps you build layouts using WYSIWYG tools. For this
-lesson, you’re going to work directly with the XML, so click the <em>activity_main.xml</em> tab at
+lesson, you’re going to work directly with the XML, so click the <em>fragment_main.xml</em> tab at
the bottom of the screen to open the XML editor.</p>
<p>The BlankActivity template you chose when you created this project includes the
-<code>activity_main.xml</code> file with a {@link
+<code>fragment_main.xml</code> file with a {@link
android.widget.RelativeLayout} root view and a {@link android.widget.TextView} child view.</p>
<p>First, delete the {@link android.widget.TextView &lt;TextView>} element and change the {@link
@@ -95,7 +95,6 @@ android:orientation}</a> attribute and set it to <code>"horizontal"</code>.
The result looks like this:</p>
<pre>
-&lt;?xml version="1.0" encoding="utf-8"?>
&lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"