diff options
author | Dirk Dougherty <> | 2009-04-21 20:39:18 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-04-21 20:39:18 -0700 |
commit | e1d9b55f807f0972ca35c5f24786b1ab27d1d876 (patch) | |
tree | 4118f3ec05ca7f0164595875e31bbdea25abf09e /docs/html/guide/tutorials/views | |
parent | 6565a5a3002410583b7bdaa5147879032bc3bfb2 (diff) | |
download | frameworks_base-e1d9b55f807f0972ca35c5f24786b1ab27d1d876.zip frameworks_base-e1d9b55f807f0972ca35c5f24786b1ab27d1d876.tar.gz frameworks_base-e1d9b55f807f0972ca35c5f24786b1ab27d1d876.tar.bz2 |
AI 147336: Remove stuff relating to the Maps ext library from the docs. Leave a pointer over to code.google.com.
BUG=1790234
Automated import of CL 147336
Diffstat (limited to 'docs/html/guide/tutorials/views')
-rw-r--r-- | docs/html/guide/tutorials/views/hello-mapview.jd | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/html/guide/tutorials/views/hello-mapview.jd b/docs/html/guide/tutorials/views/hello-mapview.jd index 976b8ab..30b92c4 100644 --- a/docs/html/guide/tutorials/views/hello-mapview.jd +++ b/docs/html/guide/tutorials/views/hello-mapview.jd @@ -3,6 +3,32 @@ parent.title=Hello, Views parent.link=index.html @jd:body +<div class="special"> +<p>This tutorial requires that you have the Google Maps external library +installed in your SDK environment. By default the Android 1.5 SDK includes the +Google APIs add-on, which in turn includes the Maps external library. If you +don't have the Google APIs SDK add-on, you can download it from this +location:</p> + +<p style="margin-left:2em;"><a +href="http://code.google.com/android/add-ons/google-apis">http://code.google.com/android/add-ons/google-apis</a></p> + +<p>The Google APIs add-on requires Android 1.5 SDK or later release. After +installing the add-on in your SDK, set your project properties to use the build +target called "Google APIs Add-on". See the instructions for setting a build +target in <a href="{@docRoot}guide/developing/eclipse-adt.html">Developing in +Eclipse with ADT</a> or <a +href="{@docRoot}guide/developing/other-ide.html">Developing in Other IDEs</a>, +as appropriate for your environment. </p> + +<p>You will also need to use the android tool to set up an AVD that uses the +Google APIs deployment target. See <a +href="{@docRoot}guide/developing/tools/avd.html">Android Virtual Devices</a> for +more information. Once you have set up your environment, you will be able to +build and run the project described in this tutorial</a></p> + +</div> + <p>A MapView allows you to create your own map-viewing Activity. First, we'll create a simple Activity that can view and navigate a map. Then we will add some overlay items.</p> |