Android Hello World Example – How to develop android apps
In this tutorial, we will go through the necessary steps you need to take in order to develop your first Android application in Eclipse IDE using the ADT plugin and run it with an Android Virtual Device.
The ADT plugin provides easy Android Project creation and management with rich editor features and documentation as well as Android Virtual Device (AVD) management.
The steps :
- Download and Install the Android SDK
- Download and Install the ADT Eclipse plugin
- Create an Android Virtual Device (AVD)
- Create an Android Project with Eclipse
- Run the Application in the Android Virtual Device
We will use the following tools in a Windows 64-bit platform:
- JDK 1.7
- Eclipse 4.2 Juno
- Android SKD 4.2
1. Download and Install the Android SDK
Go to the Android SDK page, and download the appropriate version for your platform. You can choose to download the ADT (Android Development Tools) bundle, in which you will find both Eclipse and the Android SDK. But if you already have an Eclipse instance in your pc, click “USE AN EXISTING IDE” and Download the SDK Tools for your platform. This will download an installer to your system.
Run the installer and choose the SDK Path in which the SDK will be installed.
When the installation is finished, launch the Android SDK Manager.
The Android SDK Manager will install the Android Version you want to use and other tools and APIs as well. We are going to use Android 4.2.
2. Download and Install the ADT Eclipse plugin
In this step we are going to integrate Android SDK with Eclipse IDE, using the ADT (Android Development Tools) plugin.
Open Eclipse and select Help -> Install New Software…, and in the first textfield put the following URL and click Add:
You may click Select All and Next to install the ADT. If you face any problems with the installation of the ADT plugin or if it is taking way to long to download and install, you can try installing the ADT manually and, of course you can follow the Troubleshooting Instructions.
3. Create an Android Virtual Device (AVD)
When you are done installing the ADT plugin you will be asked to restart the IDE. After restarting Eclipse, notice the two Android Development Tools Icons on the Eclipse Toolbar.
Using these Icons you can instantly open the Android SDK Manager and setup an Android Virtual Device (AVD) respectively. Click the right icon and in the pop up window click New to add a new Virtual Device.
4. Create an Android Project with Eclipse
Now it’s time to create a new Android project. Select File -> New -> Project. Then select Android Application Project and click Next.
After specifying the Applications details (e.g. Application name) , go to the Project Explorer.
Right click on the project name (in this case “HelloWorld”…) and select New->Android Activity. If Android Activity doesn’t show up, select New->Other->Android->Android Activity.
And click Next. You will be asked to specify some details about this Activity (e.g. name). Then, navigate to the java file which contains the source code of the new activity.
And paste the following code in the
OnCreate
method:01 | package com.javacodegeeks.android.helloword; |
02 |
03 | import android.app.Activity; |
04 | import android.os.Bundle; |
05 | import android.widget.TextView; |
06 |
07 | public class MainActivity extends Activity { |
08 |
09 | @Override |
10 | protected void onCreate(Bundle savedInstanceState) { |
11 | super .onCreate(savedInstanceState); |
12 |
13 | TextView text = new TextView( this ); |
14 | text.setText( "Hello World of Android! - Greetings from Java Code Geeks" ); |
15 | setContentView(text); |
16 | } |
17 |
18 | } |
5. Run the Application in the Android Virtual Device
You can now Run the project as Android Application. The emulator will be launched. This usually takes some time. So, when you are working on a Project, just launch the emulator once and leave it open.
Download Eclipse Project
Download the Eclipse Project of this tutorial HelloWorld.zip.