Scott Main 50e990c64f Massive clobber of all HTML files in developer docs for new site design
Change-Id: Idc55a0b368c1d2c1e7d4999601b739dd57f08eb3
2012-06-21 21:27:30 -07:00

66 lines
2.5 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

page.title=Building Your First App
page.metaDescription=If you're new to Android app development, this where you should begin. This series of lessons shows you how to create a new project, build a simple app, and run it on a device or emulator.
trainingnavtop=true
startpage=true
next.title=Creating an Android Project
next.link=creating-project.html
@jd:body
<div id="tb-wrapper">
<div id="tb">
<h2>Dependencies and prerequisites</h2>
<ul>
<li>Android 1.6 or higher</li>
<li><a href="http://developer.android.com/sdk/index.html">Android SDK</a></li>
</ul>
</div>
</div>
<p>Welcome to Android application development!</p>
<p>This class teaches you how to build your first Android app. Youll learn how to create an Android
project and run a debuggable version of the app. You'll also learn some fundamentals of Android app
design, including how to build a simple user interface and handle user input.</p>
<p>Before you start this class, be sure that you have your development environment set up. You need
to:</p>
<ol>
<li>Download the Android SDK Starter Package.</li>
<li>Install the ADT plugin for Eclipse (if youll use the Eclipse IDE).</li>
<li>Download the latest SDK tools and platforms using the SDK Manager.</li>
</ol>
<p>If you haven't already done this setup, read <a href="{@docRoot}sdk/installing/index.html">Installing
the SDK</a>. Once you've finished the setup, you're ready to begin this class.</p>
<p>This class uses a tutorial format that incrementally builds a small Android app in order to teach
you some fundamental concepts about Android development, so it's important that you follow each
step.</p>
<p><strong><a href="creating-project.html">Start the first lesson &rsaquo;</a></strong></p>
<h2>Lessons</h2>
<dl>
<dt><b><a href="creating-project.html">Creating an Android Project</a></b></dt>
<dd>Shows how to create a project for an Android app, which includes a set of default
app files.</dd>
<dt><b><a href="running-app.html">Running Your Application</a></b></dt>
<dd>Shows how to run your app on an Android-powered device or the Android
emulator.</dd>
<dt><b><a href="building-ui.html">Building a Simple User Interface</a></b></dt>
<dd>Shows how to create a new user interface using an XML file.</dd>
<dt><b><a href="starting-activity.html">Starting Another Activity</a></b></dt>
<dd>Shows how to respond to a button press, start another activity, send it some
data, then receive the data in the subsequent activity.</dd>
</dl>