From 006d849c697182e61e71d7b5494b45af845658dd Mon Sep 17 00:00:00 2001 From: Scott Main <> Date: Mon, 13 Apr 2009 18:46:08 -0700 Subject: [PATCH] AI 146029: am: CL 146028 update hello world tutorial for cupcake, including various other edits. Original author: smain Merged from: //branches/cupcake/... Automated import of CL 146029 --- docs/html/guide/tutorials/hello-world.jd | 348 ++++++++++-------- .../guide/tutorials/images/hello_world_0.png | Bin 30614 -> 6328 bytes .../guide/tutorials/images/hello_world_1.png | Bin 38174 -> 9635 bytes .../guide/tutorials/images/hello_world_2.png | Bin 67830 -> 11040 bytes .../guide/tutorials/images/hello_world_3.png | Bin 60750 -> 11000 bytes 5 files changed, 196 insertions(+), 152 deletions(-) diff --git a/docs/html/guide/tutorials/hello-world.jd b/docs/html/guide/tutorials/hello-world.jd index 7b9287fabfe85..7dbfd3f6aab32 100644 --- a/docs/html/guide/tutorials/hello-world.jd +++ b/docs/html/guide/tutorials/hello-world.jd @@ -5,21 +5,46 @@ page.title=Hello, World of a development framework is how easy it is to write "Hello, World." Well, on Android, it's pretty easy. It's particularly easy if you're using Eclipse as your IDE, because we've provided a -great plugin that handles your project creation and management to greatly speed up your +great plugin that handles your project creation and management to greatly speed-up your development cycles.
If you're not using Eclipse, that's okay. Familiarize yourself with Developing in Other IDEs. -You can then come back here and ignore anything about Eclipse.
+You can then return to this tutorial and ignore anything about Eclipse. -Before you start, you should already have the latest SDK installed, and if you're using -Eclipse, you should have installed the ADT plugin as well. See -Installing the Android SDK to get these -installed.
+Before you start, you should already have the very latest SDK installed, and if you're using +Eclipse, you should have installed the ADT plugin as well. If you have not installed these, see +Installing the Android SDK and return +here when you've completed the installation.
-Note: -In some cases, you might want to click the screenshots below to get a bigger view. -
+Note: If you're developing with an Android SDK older +than the one provided for Android 1.5, you can skip this step and continue with +Create the Project.
+ +In this tutorial, you will run your applicion in the Android Emulator. +Before you can launch the emulator, you must create an +Android Virtual Device (AVD). An AVD defines the system image and +device settings used by the emulator.
+ +To create an AVD, use the android tool provided in the Android SDK.
+Open a command prompt or terminal, navigate to the
+/tools directory in the SDK package and execute:
+
+android create avd --target 1 --name myavd ++ +
The tool now asks if you would like to create a custom hardware profile, say
+no. That's it. You now have an AVD and can use it to run the Emulator.
In the above command, the target option is required
+and specifies the target platform for the emulator. (A target defines the system image,
+API level and supported skins. To view all available targets, execute:
+android list target.) The name option is also required
+and defines the name for the new AVD. For more information about android,
+see the Android Tool
+documentation.
From Eclipse, select the File > New > Project menu item. If the Android Plugin for Eclipse has been successfully installed, the resulting dialog should have a folder labeled "Android" which should contain a single entry: - "Android Project".
+ "Android Project". (After you create one or more Android projects, an entry for + "Android XML File" will also be available.)Selected "Android Project" and click Next.
@@ -39,48 +65,63 @@ In some cases, you might want to click the screenshots below to get a bigger vie
The next screen allows you to enter the relevant details for your project:
Click Finish.
+
- Here's what each field on this screen means:
+Here is a description of each field:
The package name you use in your application must be unique across - all packages installed on the system; for this reason, it's very +
Your package name must be unique across + all packages installed on the Android system; for this reason, it's very important to use a standard domain-style package for your - applications. In the example above, we used the - package domain "com.android"; you should use a - different one appropriate to your organization.
The checkbox for toggling "Use default location" allows you to change - the location on disk where the project's files will be generated and stored.
+Other fields: The checkbox for "Use default location" allows you to change + the location on disk where the project's files will be generated and stored. "Target" + is the platform target for your application.
-After the plugin completes your project creations, you'll have a class named HelloAndroid
-(found in your project package, HelloAndroid > src > com.android.hello). It should look like
-this:
Open the HelloAndroid.java file, located inside HelloAndroid > src > +com.example.helloandroid). It should look like this:
package com.example.hello;
@@ -97,6 +138,14 @@ public class HelloAndroid extends Activity {
}
}
+Notice that the class is based on the {@link android.app.Activity} class. An Activity is a +single application entity that is used to perform actions. An application may have many separate +activities, but the user interacts with them one at a time. The +{@link android.app.Activity#onCreate(Bundle) onCreate()} method +will be called by the Android system when your Activity starts — +it is where you should perform all initialization and UI setup. An activity is not required to +have a user interface, but usually will.
+Now let's modify some code!
Take a look at this revised code, below, and make the same changes to your HelloAndroid.java file. We'll dissect -it line by line:
+Take a look at the revised code below and then make the same changes to your HelloAndroid class. +The bold items are lines that have been added.
package com.android.hello;
@@ -125,101 +174,75 @@ public class HelloAndroid extends Activity {
}
}
-Tip: If you forgot to import the TextView package, try this: -press Ctrl-Shift-O (Cmd-Shift-O, on Mac). This is an Eclipse -shortcut to organize imports—it identifies missing packages and adds them for you.
- -Notice that our class is based on the {@link android.app.Activity} class. An Activity is a -single application entity that is used to perform actions. An application may have many, but the user -interacts with them only one at a time. An Activity is not required to actually have a user interface, -but usually will.
+Tip: An easy way to add import packages to your project is +to press Ctrl-Shift-O (Cmd-Shift-O, on Mac). This is an Eclipse +shortcut that identifies missing packages based on your code and adds them for you.
An Android user interface is composed of hierarchies of objects called -Views. A {@link android.view.View} is simply a drawable object, such as a radio button, an -animation, or (in our case) a text label. The specific name for the View -subclass that handles text, which we use here, is {@link android.widget.TextView}.
+Views. A {@link android.view.View} is a drawable object used as an element in your UI layout, +such as a button, image, or (in this case) a text label. Each of these objects is a subclass +of the View class and the subclass that handles text is {@link android.widget.TextView}. -Here's how you construct a TextView:
- -TextView tv = new TextView(this);- -
The argument to TextView's constructor is an Android {@link android.content.Context} instance. The -Context is simply a handle to the system; it provides services like +
In this change, you create a TextView with the class constructor, which accepts
+an Android {@link android.content.Context} instance as its parameter. A
+Context is a handle to the system; it provides services like
resolving resources, obtaining access to databases and preferences, and so
-on. The Activity class inherits from Context. Since our
-HelloAndroid class is a subclass of Activity, it is also a Context, and so we can
-pass the this reference to the TextView.
this as your Context reference to the TextView.
-Once we've constructed the TextView, we need to tell it what to display:
+Next, define the text content with +{@link android.widget.TextView setText(CharSequence) setText()}.
-tv.setText("Hello, Android");
-
-Nothing too surprising there.
- -At this point, we've constructed a TextView and told it what text to -display. The final step is to connect this TextView with the on-screen -display, like so:
- -setContentView(tv);- -
The setContentView() method on Activity indicates to the system which
-View should be associated with the Activity's UI. If an Activity doesn't
-call this method, no UI is present at all and the system will display a blank
-screen. For our purposes, all we want is to display some text, so we pass it
-the TextView we just created.
Finally, pass the TextView to +{@link android.app.Activity#setContentView(View) setContentView()} in order to +display it as the content for the Activity UI. If your Activity doesn't +call this method, then no UI is present and the system will display a blank +screen.
There it is — "Hello, World" in Android! The next step, of course, is to see it running.
+The Eclipse plugin makes it very easy to run your applications. +Select Run > Run Configurations (in Eclipse 3.3, +Run > Open Run Dialog).
-The Eclipse plugin makes it very easy to run your applications. Begin by -selecting the Run > Open Run Dialog menu entry (in Eclipse 3.4, it's -Run > Run Configurations). You should see a dialog -like this:
- -
-
-Next, highlight the "Android Application" entry, and then click the icon in the -top left corner (the one depicting a sheet of paper with a plus sign in the -corner) or simply double-click the "Android Application" entry. You should +
Select the "Android Application" entry, and click the icon in the +top left corner (the one depicting a sheet of paper with a plus symbol) +or double-click on "Android Application." You should have a new launcher entry named "New_configuration".
-Change the name to something expressive, like "Hello, Android", and then pick -your project by clicking the Browse button. (If you have more than one -Android project open in Eclipse, be sure to pick the right one.) The -plugin will automatically scan your project for Activity subclasses, and add -each one it finds to the drop-down list under the "Activity:" label. Since -your "Hello, Android" project only has one, it will be the default, and you can -simply continue.
+Change the name to something meaningful like "Android Activity." Then pick +click the Browse button and select your HelloAndroid project. The +plugin will automatically scan your project for Activity subclasses and add +each one it finds to the drop-down list under "Launch Action." Because the +HelloAndroid project only has one Activity, it will be the default Activity. +Leave "Launch Default Activity" selected.
-Click the "Apply" button. Here's an example:
- -
-
-Now click Run, and the Android Emulator should start and open the application. -Once it's booted up your application will appear. (Once booted, you may need to unlock the emulator's phone screen -by pressing the device MENU key.) When all is said and done, you should +
Click the Apply, then Run. The Android Emulator +will start and once it's booted up your application will appear. You should now see something like this:
+The "Hello, Android" you see in the grey bar is actually the application title. The Eclipse plugin +creates this automatically (the string is defined in the /res/values/strings.xml file and referenced +by your AndroidManifest.xml file). The text below the title is the actual text that you have +created in the TextView object.
-That's "Hello, World" in Android. Pretty straightforward, eh? -The next sections of the tutorial offer more detailed information that you may find valuable as you -learn more about Android.
- - +That covers the basic "Hello World" tutorial, but you should continue reading for some more +valuable information about developing Android applications.
The "Hello, World" example you just completed uses what we call "programmatic" -UI layout. This means that you construct and build your application's UI +
The "Hello, World" example you just completed uses what is called a "programmatic" +UI layout. This means that you constructed and built your application's UI directly in source code. If you've done much UI programming, you're probably familiar with how brittle that approach can sometimes be: small changes in layout can result in big source-code headaches. It's also very @@ -229,7 +252,7 @@ your layout and wasted time debugging your code.
That's why Android provides an alternate UI construction model: XML-based layout files. The easiest way to explain this concept is to show an example. Here's an XML layout file that is identical in behavior to the -programmatically-constructed example you just completed:
+programmatically-constructed example:<?xml version="1.0" encoding="utf-8"?> <TextView xmlns:android="http://schemas.android.com/apk/res/android" @@ -238,16 +261,16 @@ programmatically-constructed example you just completed: android:text="@string/hello"/>
The general structure of an Android XML layout file is simple: it's a tree -of XML elements, where each element is the name of a View class -(this example, however, is just one element). You can use the +of XML elements, wherein each node is the name of a View class +(this example, however, is just one View element). You can use the name of any class that extends {@link android.view.View} as an element in your XML layouts, including custom View classes you define in your own code. This structure makes it very easy to quickly build up UIs, using a more simple -structure and syntax than you would in source code. This model is inspired -by the web development model, where you can separate the presentation of your +structure and syntax than you would use in a programmatic layout. This model is inspired +by the web development model, wherein you can separate the presentation of your application (its UI) from the application logic used to fetch and fill in data.
-In this example, there's just one View element, the TextView,
+
In the above XML example, there's just one View element: the TextView,
which has four XML attributes. Here's a summary of what they mean:
|
- This attribute defines how much of the available width on the screen this View should consume. In this case, it's our only View so we want it to take up the entire screen, which is what a value of "fill_parent" means. + This attribute defines how much of the available width on the screen this View should consume. +In this case, it's the only View so you want it to take up the entire screen, which is what a value of "fill_parent" means. |
| - This sets the text that the TextView should display. In this example, we use a string + This sets the text that the TextView should display. In this example, you use a string resource instead of a hard-coded string value. The hello string is defined in the res/values/strings.xml file. This is the recommended practice for inserting strings to your application, because it makes the localization @@ -302,29 +326,32 @@ which has four XML attributes. Here's a summary of what they mean: |
These layout files belong in the res/layout/ directory in your project. The "res" is -short for "resources" and that directory contains all the non-code assets that -your application requires. Resources also include things like images, localized -strings, and XML layout files.
+These XML layout files belong in the res/layout/ directory of your project. The "res" is +short for "resources" and the directory contains all the non-code assets that +your application requires. In addition to layout files, resources also include assets +such as images, sounds, and localized strings.
When you want a different design for landscape, put your layout XML file
- in res/layout-land/. Android will automatically look here when the layout changes.
- Without it the layout will just be stretched.
The Eclipse plugin automatically creates one of these layout files for you (main.xml). In our example
-above, we just ignored it and created our layout programmatically. We did so just to teach you a little more
-about the framework, but you should almost always define your layout in an XML file instead of in your code.
So, let's put it to use and change the "Hello, Android" sample to use the XML layout.
+The Eclipse plugin automatically creates one of these layout files for you: main.xml. +In the "Hello World" application you just completed, this file was ignored and you created a +layout programmatically. This was meant to teach you more +about the Android framework, but you should almost always define your layout +in an XML file instead of in your code. +The following procedures will instruct you how to change your +existing application to use an XML layout.
main.xml (once opened, you might need to click
-the "main.xml" tab at the bottom to see the XML source). Replace its contents with
+/res/layout/ folder and open main.xml (once opened, you might need to click
+the "main.xml" tab at the bottom of the window to see the XML source). Replace the contents with
the following XML:
+
<?xml version="1.0" encoding="utf-8"?> <TextView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" @@ -333,7 +360,7 @@ the following XML:Save the file.
strings.xml.
+HelloAndroid class source code to read the
-XML layout, instead of the hard-coded version. Edit the file to look like this:
+HelloAndroid class use the
+XML layout. Edit the file to look like this:
package com.example.hello;
@@ -364,38 +391,44 @@ public class HelloAndroid extends Activity {
}
}
-When you make this change, type it by hand to try the code-completion feature on that R class. You'll probably find that it helps a lot.
+When you make this change, type it by hand to try the +code-completion feature. As you begin typing "R.layout.main" the plugin will offer you +suggestions. You'll find that it helps in a lot of situations.
-Now, instead of passing setContentView() a View object, we give it a reference to our layout resource.
+
Instead of passing setContentView() a View object, you give it a reference
+to the layout resource.
The resource is identified as R.layout.main, which is actually a compiled object representation of
-the layout defined in layout/main.xml. The Eclipse plugin automatically creates this reference for
-us inside the project's R.java class. If you're not using Eclipse, then the R.java class will be generated for you
+the layout defined in /res/layout/main.xml. The Eclipse plugin automatically creates this reference for
+you inside the project's R.java class. If you're not using Eclipse, then the R.java class will be generated for you
when you run Ant to build the application. (More about the R class in a moment.)
Now that you've made this change, go ahead and re-run your application — all -you need to do is click the green Run arrow icon, or select -Run > Run History > Hello, Android from the menu. You should see pretty much the same thing -you saw before! After all, the point was to show that the two different +
Now re-run your application — because you've created a launch configuration, all +you need to do is click the green arrow icon to run, or select +Run > Run History > Android Activity. Other than the change to the TextView +string, the application looks the same. After all, the point was to show that the two different layout approaches produce identical results.
-Tip: Use the shortcut Ctrl-Shift-F11 +
Tip: Use the shortcut Ctrl-F11 (Cmd-Shift-F11, on Mac) to run your currently visible application.
-You've just completed your first Android application! Continue reading for an introduction -to debugging and a little more information on using other IDEs. Once you're ready to move on, -please begin by reading Application -Fundamentals. Also refer to the Developer's Guide +
Continue reading for an introduction +to debugging and a little more information on using other IDEs. When you're ready to learn more, +read Application +Fundamentals for an introduction to all the elements that make Android applications work. +Also refer to the Developer's Guide introduction page for an overview of the Dev Guide documentation.
In Eclipse, open the file named R.java in your source code folder in the Package -Explorer. It should look something like this:
+In Eclipse, open the file named R.java (in the /gen [Generated Java Files] folder). +It should look something like this:
+package com.example.helloandroid;
+
public final class R {
public static final class attr {
}
@@ -432,8 +465,8 @@ the res/drawable/ direcory) you'll see R.java change to keep up.
Debugging Your Project
The Android Plugin for Eclipse also has excellent integration with the Eclipse
-debugger. To demonstrate this, let's introduce a bug into
-our code. Change your HelloAndroid source code to look like this:
+debugger. To demonstrate this, introduce a bug into
+your code. Change your HelloAndroid source code to look like this:
package com.android.hello;
@@ -478,23 +511,34 @@ just as you would for any other application.
The Android Plugin for Eclipse is really just a wrapper around a set of tools
included with the Android SDK. (These tools, like the emulator, aapt, adb,
- ddms, and others are documented elsewhere.) Thus, it's possible to
+ ddms, and others are documented elsewhere.)
+ Thus, it's possible to
wrap those tools with another tool, such as an 'ant' build file.
- The Android SDK includes a Python script named "activitycreator.py" that can be
+
The Android SDK includes a toolk named "android" that can be
used to create all the source code and directory stubs for your project, as well
as an ant-compatible build.xml file. This allows you to build your project
from the command line, or integrate it with the IDE of your choice.
- For example, to create a HelloAndroid project similar to the one we just created
- via Eclipse, you'd use this command:
+ For example, to create a HelloAndroid project similar to the one created
+ in Eclipse, use this command:
- activitycreator.py --out HelloAndroid com.android.hello.HelloAndroid
+
+android create project \
+ --package com.android.helloandroid \
+ --activity HelloAndroid \
+ --target 1 \
+ --path <path-for-your-project>/HelloAndroid \
+ --mode activity
+
+
+ This creates the required folders and files for the project at the location
+ defined by the path.
- To build the project, you'd then run the command 'ant'. When that command
+
To build the project, you'd then run the command ant. When that command
successfully completes, you'll be left with a file named HelloAndroid.apk under
- the 'bin' directory. That .apk file is an Android Package, and can be
+ the "bi"' directory. That .apk file is an Android Package, and can be
installed and run in your emulator using the 'adb' tool.
- For more information on how to use these tools, please read the documentation
- cited above.
+ For more information on how to use these tools, please read
+Developing in Other IDEs.
diff --git a/docs/html/guide/tutorials/images/hello_world_0.png b/docs/html/guide/tutorials/images/hello_world_0.png
index c174fbaffac9840f48f3acc0ceebbf097be73d14..330a07c7476024a08846ce92fd3486687f9c91cb 100644
GIT binary patch
literal 6328
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
diff --git a/docs/html/guide/tutorials/images/hello_world_1.png b/docs/html/guide/tutorials/images/hello_world_1.png
index f08438ab9fa39813da9cf84e68b5a539a09e1af8..02682f45152d3ced57e2aec737c49f87243c0a6d 100644
GIT binary patch
literal 9635
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
NqiLv7rS|yMe*rtCozMUP
literal 38174
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