From 752aaf92a8eb3d982cb870ac74f86315f9c5a918 Mon Sep 17 00:00:00 2001 From: Dirk Dougherty <> Date: Mon, 27 Apr 2009 18:13:11 -0700 Subject: AI 147874: Fix format and link errors in docs. BUG=1790234 Automated import of CL 147874 --- docs/html/guide/developing/tools/avd.jd | 14 +++++++++----- docs/html/guide/developing/tools/emulator.jd | 6 +++--- docs/html/guide/publishing/preparing.jd | 9 +++++---- .../html/guide/topics/media/jet/jetcreator_manual.jd | 2 +- docs/html/guide/tutorials/hello-world.jd | 20 +++++++++----------- docs/html/sdk/android-1.5-highlights.jd | 2 +- 6 files changed, 28 insertions(+), 25 deletions(-) (limited to 'docs') diff --git a/docs/html/guide/developing/tools/avd.jd b/docs/html/guide/developing/tools/avd.jd index 1e13ace..b8f205e 100644 --- a/docs/html/guide/developing/tools/avd.jd +++ b/docs/html/guide/developing/tools/avd.jd @@ -69,7 +69,7 @@ your application on.
specify emulator command-line options at launch or by using the emulator console to change behaviors or characteristics at run time. For a complete reference of emulator options, please see the Emulator +href="{@docRoot}guide/developing/tools/emulator.html">Emulator documentation.To create and manage AVDs, you use the android tool provided in the Android @@ -81,9 +81,13 @@ Other IDEs, as appropriate for your environment.
The Android SDK does not include any preconfigured AVDs, so you need to create an AVD before you can run any application in the emulator -(even the Hello World application).
To create an AVD, you use the android tool, a command-line utility
available in the <sdk>/tools/
directory. Managing AVDs is one
@@ -91,7 +95,7 @@ of the two main function of the android tool (the other is creating and updating
Android projects). Open a terminal window and change to the
<sdk>/tools/
directory, if needed
To create each AVD, you issue the command android avd create
,
+
To create each AVD, you issue the command android create avd
,
with options that specify a name for the new AVD and the system image you want
to run on the emulator when the AVD is invoked. You can specify other options on
the command line also, such as to create an emulated SD card for the new AVD, set
@@ -99,7 +103,7 @@ the emulator skin to use, or set a custom location for the AVD's files.
Here's the command-line usage for creating an AVD:
-android -n <name> -t <targetID> [-<option> <value>] ...+
android create avd -n <name> -t <targetID> [-<option> <value>] ...
You can use any name you want for the AVD, but since you are likely to be
creating multiple AVDs, you should choose a name that lets you recognize the
diff --git a/docs/html/guide/developing/tools/emulator.jd b/docs/html/guide/developing/tools/emulator.jd
index 11c0da5..82d3c8d 100644
--- a/docs/html/guide/developing/tools/emulator.jd
+++ b/docs/html/guide/developing/tools/emulator.jd
@@ -491,8 +491,8 @@ on disk images, use -help-disk-images
.
-shell-serial <device>
-shell
and specify the QEMU character
device to use for communication with the shell.Here are some examples:
@@ -755,7 +755,7 @@ default versions stored in the SDK. AVDs is in~/.android/avd
on OS X and Linux, C:\Documents and
Settings\<user>\.android\
on Windows XP, and
C:\Users\<user>\.android\
-on Windows Vista.
+on Windows Vista.
To let you use alternate or custom versions of the image files, the emulator
provides startup options that override the default locations and filenames of
diff --git a/docs/html/guide/publishing/preparing.jd b/docs/html/guide/publishing/preparing.jd
index d355265..b4eaea3 100644
--- a/docs/html/guide/publishing/preparing.jd
+++ b/docs/html/guide/publishing/preparing.jd
@@ -178,8 +178,8 @@ MapView elements
For complete information about getting a Maps API Key, see Obtaining a Maps API
-Key.
+href="http://code.google.com/android/add-ons/google-apis/mapkey.html">
+Obtaining a Maps API Key.
If your application uses one or more Mapview elements, you will need to
register your application with the Google
@@ -221,7 +221,7 @@ to download Maps data.
For more information about signing and your private key, see Signing Your Applications.
+href="{@docRoot}guide/publishing/app-signing.html">Signing Your Applications.
Compile your application
@@ -234,7 +234,8 @@ you can compile your application for release.
8. Sign your application
Sign your application using your private key. Signing your application
-correctly is critically important. Please see Signing Your
+correctly is critically important. Please see
+Signing Your
Applications for complete information.
9. Test your compiled and signed application
diff --git a/docs/html/guide/topics/media/jet/jetcreator_manual.jd b/docs/html/guide/topics/media/jet/jetcreator_manual.jd
index 79d41c2..9692d97 100644
--- a/docs/html/guide/topics/media/jet/jetcreator_manual.jd
+++ b/docs/html/guide/topics/media/jet/jetcreator_manual.jd
@@ -751,7 +751,7 @@ following:
![]()
+src="{@docRoot}images/jet/jc_moveseg_wnd.png">
diff --git a/docs/html/guide/tutorials/hello-world.jd b/docs/html/guide/tutorials/hello-world.jd
index a888529..4d1e9cd 100644
--- a/docs/html/guide/tutorials/hello-world.jd
+++ b/docs/html/guide/tutorials/hello-world.jd
@@ -34,9 +34,14 @@ here when you've completed the installation.
Create an AVD
-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.
+
+
+ To learn more about how to use AVDs and the options
+ available to you, refer to the
+ Android
+ Virtual Devices document.
+
+
In this tutorial, you will run your application in the Android Emulator.
Before you can launch the emulator, you must create an
@@ -55,13 +60,6 @@ For the time being, press Return to skip it ("no" is the default response).
That's it. This configures an AVD named "my_avd" that uses the Android 1.5
platform. The AVD is now ready for use in the emulator.
-
-
- To learn more about Android Virtual Devices (and targets), refer to the
- AVD document.
-
-
-
In the above command, the --target
option is required
and specifies the deployment target to run on the emulator.
The --name
option is also required and defines the
@@ -247,7 +245,7 @@ to see it running.
To learn more about creating and editing run configurations in Eclipse, refer to
- Developing In Eclipse,
+ Developing In Eclipse,
with ADT.
diff --git a/docs/html/sdk/android-1.5-highlights.jd b/docs/html/sdk/android-1.5-highlights.jd
index b0e5f57..e6c4f88 100644
--- a/docs/html/sdk/android-1.5-highlights.jd
+++ b/docs/html/sdk/android-1.5-highlights.jd
@@ -17,7 +17,7 @@ The list below provides an overview of the changes.
New APIs and Manifest Elements
-User Interface Refinements
+User Interface Refinements
- System-wide:
--
cgit v1.1