Android hello word application

This tutorial will guide you to create a simple hello word application in android. Through this tutorial you will learn about the basic understanding of android activity and layout. Most common tool to create android application is Eclipse ADT plugin. You can follow step by step how to install eclipse ADT Plugin in the official developer site here.

After your eclipse ADT plugin was installed, now you’re ready to create android Hello Word project. In eclipse, select menu

File->New->Other

This will open a wizard.

android project wizard
android project wizard

On the wizard, open  Android sub tree and choose Android Applicaton Project then click Next.

android new project
android new project

The wizard will prompt you to fill below informations:

  1. Application Name: this name will shown in the google play store
  2. Project Name: name used by eclipse, must be unique in a workspace
  3. Package Name: this is your application identifier, must be unique for each application.

The next screen will allow you to put icon for your application. Choose your application icon or just click next until you see this window:

create android activity
create android activity

Activity in android just like a screen that is visible to the user. For now, just choose Blank Activity. 

create android activity
create android activity

Now you must set Activity Name and Layout Name. Activity name is a class name for your activity and layout name is your layout file name. Click finish to close the wizard. Now, you will see a HelloWord project on eclipse project explorer. Here is the folder structure of HelloWord project.

android folder structure
android folder structure

Here is basic description about  project sub folders:

  1. src: contains your java source files
  2. bin: contains your compiled java class
  3. gen: contains android generated files
  4. libs: here you can place third party library (jar file)
  5. res: contains your projects’ resources, like images, icons, layouts, strings, etc

Now open [cci]res/layout/activity_main.xml[/cci] file, it will looks like this:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"
         />

</RelativeLayout>

This file defines your layout structure. You can place your view object here. There are two categories of view in android, [cci]View[/cci] and [cci]ViewGroup[/cci] or container. [cci]View[/cci] object can be [cci]TextView, EditText, Spinner[/cci], etc while [cci]ViewGroup[/cci] acts as the [cci]View[/cci] container.

As you can see from above source code, it uses [cci]RelativeLayout[/cci] as main container. This layout places it’s childs relative to other childs. With this layout you can place any child overlapping to others.  Another most common layout is [cci]LinearLayout.[/cci] The main function of [cci]LinearLayout[/cci] is to  place their child in orientation manner, vertical or horizontal.

Either [cci]View[/cci] and [cci]ViewGroup[/cci] must have [cci]android:layout_width[/cci] and [cci]android:layout_height[/cci], these attributes respectively defines [cci]View[/cci] width and height. You can put value for both attributes using integer value in [cci]dp[/cci] such as [cci]0dp, 30dp, 100dp[/cci], etc. [cci]dp[/cci] or [cci]dip[/cci] is android unit which means [cci]density independent pixels[/cci]. Also you can put following constant value :

  1. [cci]MATCH_PARENT: [/cci]make the size of [cci]View[/cci] as big as it’s parent (container) minus padding.
  2. [cci]WRAP_CONTENT: [/cci]make the size of[cci] View [/cci]to match content size.

Now take a look inside [cci]RelativeLayout[/cci] at above code. There is one TextView inside with an attribute [cci]android:text:”@string/hello_word”[/cci], this attribute defines the text for [cci]TextView[/cci], but as you can see, the attribute value is not direct string but refers to string resources. You can find the string resource in folder [cci]res/values/string.xml[/cci].

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="app_name">HelloWord</string>
    <string name="action_settings">Settings</string>
    <string name="hello_world">Hello world!</string>
</resources>

Android will search in the string resources for string that has name [cci]hello_word[/cci] and then use the value. Actually you can put direct string like this [cci]android:text:”Hello world!”[/cci], but the recommended way is using string resource to put your string.

Now how to tell android to use this layout? Goto [cci]src[/cci] folder, and open [cci]MainActivity.java[/cci],

package com.semurjengkol.helloword;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}

}

To use you layout in activity, you must override [cci]onCreate[/cci] method of the [cci]Activity[/cci] class and then call [cci]setContentView(R.layout.activity_main);[/cci] now you can run your [cci]HelloWord[/cci] application, it’s will looks like this.

Android hello word app
Android hello word app

Download source code HelloWord

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top