diff --git a/docs/html/training/basics/firstapp/creating-project.jd b/docs/html/training/basics/firstapp/creating-project.jd index 50485dbe8c446..c4cb362e6d1f4 100644 --- a/docs/html/training/basics/firstapp/creating-project.jd +++ b/docs/html/training/basics/firstapp/creating-project.jd @@ -10,9 +10,9 @@ next.link=running-app.html -
An Android project contains all the files that comprise the source code for your Android app. The Android SDK tools make it easy to start a new Android project with a set of @@ -42,7 +42,7 @@ SDK tools from a command line.
Note: You should already have the Android SDK installed, and if you're using Eclipse, you should also have the ADT -plugin installed (version 21.0.0 or higher). If you don't have these, follow the guide to installed (version 22.6.2 or higher). If you don't have these, follow the guide to Installing the Android SDK before you start this lesson.
@@ -50,7 +50,7 @@ lesson.
Click New
in the toolbar.For this project, select BlankActivity and click Next.
Your Android project is now a basic "Hello World" app that contains some default files. +
Your Android project is now a basic "Hello World" app that contains some default files. To run the app, continue to the next lesson.
@@ -155,7 +155,7 @@ and replace projects. -Your Android project is now a basic "Hello World" app that contains some default files. +
Your Android project is now a basic "Hello World" app that contains some default files. To run the app, continue to the next lesson.
Tip: Add the platform-tools/ as well as the
diff --git a/docs/html/training/basics/firstapp/index.jd b/docs/html/training/basics/firstapp/index.jd
index 4c1a0dc353566..1b4909618f4d8 100644
--- a/docs/html/training/basics/firstapp/index.jd
+++ b/docs/html/training/basics/firstapp/index.jd
@@ -8,21 +8,21 @@ next.link=creating-project.html
@jd:body
-
Welcome to Android application development!
+ +Welcome to Android application development!
This class teaches you how to build your first Android app. You’ll learn how to create an Android project and run a debuggable version of the app. You'll also learn some fundamentals of Android app @@ -36,6 +36,10 @@ to:
Note: Make sure you install the most recent versions of the ADT +plugin and the Android SDK before you start this class. The procedures described in this class may +not apply to earlier versions.
+If you haven't already done these tasks, start by downloading the Android SDK and following the install steps. Once you've finished the setup, you're ready to begin this class.
diff --git a/docs/html/training/basics/firstapp/starting-activity.jd b/docs/html/training/basics/firstapp/starting-activity.jd index 9aa25a375707e..27d2c104ee747 100644 --- a/docs/html/training/basics/firstapp/starting-activity.jd +++ b/docs/html/training/basics/firstapp/starting-activity.jd @@ -10,9 +10,9 @@ previous.link=building-ui.html -Note:
-You now need an import statement for android.widget.EditText.
+You now need an import statement for android.widget.EditText.
You'll define the EXTRA_MESSAGE constant in a moment.
An {@link android.content.Intent} can carry a collection of various data types as key-value @@ -212,7 +212,7 @@ work.
To create a new activity using Eclipse:
Click New
in the toolbar.PlaceholderFragment class that extends
+ PlaceholderFragment class that extends
{@link android.app.Fragment}. You will not need this class in the final version of this
activity.Fragments decompose application functionality and UI into reusable modules. For more
-information on fragments, see the Fragments
+ Fragments decompose application functionality and UI into reusable modules. For more
+information on fragments, see the Fragments
API Guide. The final version of this activity does not use fragments. Note: Your activity may look different if you did not use
+the latest version of the ADT plugin. Make sure you install the latest version of the
+ADT plugin to complete this tutorial. The {@code DisplayMessageActivity} class should now look like this: