|
How to Install the Android SDK on Windows XP and Create an Application that
Runs in the Android Emulator
This tutorial shows you how to download and install Android SDK to get you started
developing Android applications.
1. Download
and Install the Android SDK and Test the Emulator
2. Install Java
3. Install Eclipse
4. Install the ADT Plugin in Eclipse
5. Create Hello World Application
1. Download
and Install the Android SDK and test the Emulator
|
2. |
Unzip downloaded file.

|
|
3. |
Now, set your PATH environment variable by right click
on My Computer, and select Properties. Under the Advanced tab, hit the Environment
Variables button, and in the dialog that comes up, double-click on
Path under System Variables. Add the full path to the tools/
directory to the path, in this case, it is: C:\android\android-sdk-windows-1.0_r1\tools.
Then click OK , OK , OK.

|
|
4. |
Click on Start > All Programms > Accessories > Command
prompt and type emulator, then hit ENTER , in a couple seconds the emulator
will appear, please wait when it's starting up.


|
|
5. |
Click on Browser button.

|
|
6. |
Click on the Menu button, then click on Go
to ... Type in a website address you want to view and press ENTER, ex:
http://androidcore.com

|
2. Install Java
|
2. |
Choose Java SE (JDK) 6 link.

|
|
3. |
Click on the Download button

|
|
4. |
Click on the Download button

|
|
5. |
Select Platform, Language for your download, check into
the box "I agree to ..." and then click on the button "Continue"

|
|
6. |
Click on the file name (jdk-6u10-windows-i586-p.exe)
to start to download the Java SDK

Save it to C:\android

|
|
7. |
After it has finished downloading, you will have this
file in your directory (C:\android). Double click on file that was downloaded
to start install Java SDK.

Accept agreement. And click Next to start install.

|
3. Install Eclipse
Eclipse is a professional editor.
|
2. |
After it has finished downloading, you will have this
file in your directory (C:\). Unzip this file.

|
4.
Install the ADT Plugin
The ADT (Android Development Tools) plugin includes a variety
of powerful extensions that make creating, running, and debugging Android applications
faster and easier.
|
1. |
Start Eclipse.
If you are using a proxy, please go to Windows > Preferences
> General > Network Connections, choose "Manual proxy configuration" and
type your proxy address here. If you are using a direct internet connection,
you do not need to do this step.
Click Help > Software Updates

|
|
2. |
Choose "Available Software" tab, then click on the button
"Add Site ..."

|
|
4. |
Back in the Available Software view, you should see the
plugin. "Android Developer Tools", and "Android Editors" should both be
checked. The Android Editors feature is optional, but recommended. Then
click on the button "Install ..."

|
|
5. |
Click on the button Next

|
|
6. |
Check the "I accept the terms of the license agreements"
and click Finish.

|
|
7. |
Wait to Eclipse download the plugin

|
|
8. |
Eclipse will ask to restart, click on the button Yes

|
|
9. |
After restart, update your Eclipse preferences to point
to the SDK directory:
1. Select Window > Preferences... to open the Preferences panel.

2. Select Android from the left panel. If you get a dialog says: "Could
not find folder 'tool' inside SDK ...", just click on the button OK
3. For the SDK Location in the main panel, click Browse... and locate the
SDK directory.
4. Click Apply, then OK.

|
5. Create Hello World Application
This will show you how to make the first simple Android application with Eclipse.
|
1. |
Click File > New > Other....

|
|
2. |
Click on Android Project and click Next.

|
|
3. |
Fill out the form and click Finish.

|
|
4. |
Change the code in HelloWorld.java to the following.
<p>package com.androidcore.hello;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class HellWorld extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//setContentView(R.layout.main);
TextView tv = new TextView(this);
tv.setText("Hello, Android");
setContentView(tv);
}
}</p>

|
|
5. |
Click on menu Run, choose Run Configurations.

|
|
6. |
Click on Android Application, fill in Name,
Project. Click on the "Launch" choice, choose Activity. Then click on
button Run.

|
|
7. |
Once Android Emulator is booted up, your application
will appear. When all is said and done, you should see something like this:

|
That's it — you're done!
 |