Skip to main content

Android hello world example .

Let us start actual programming with Android Framework. Before you start writing your first example using Android SDK, you have to make sure that you have setup your Android development environment properly as explained in Android - Environment Setup tutorial. I also assume that you have a little bit working knowledge with Eclipse IDE.
So let us proceed to write a simple Android Application which will print "Hello World!".

Create Android Application

The first step is to create a simple Android Application using Eclipse IDE. Follow the option File -> New -> Project and finally select Android New Application wizard from the wizard list. Now name your application as HelloWorld using the wizard window as follows:
Hello Android Wizard
Next, follow the instructions provided and keep all other entries as default till the final step. Once your project is created successfully, you will have following project screen:
Hello Android Project

Anatomy of Android Application

Before you run your app, you should be aware of a few directories and files in the Android project:
Android Directory Structure
S.N.Folder, File & Description
1src
This contains the .java source files for your project. By default, it includes an MainActivity.javasource file having an activity class that runs when your app is launched using the app icon.
2gen
This contains the .R file, a compiler-generated file that references all the resources found in your project. You should not modify this file.
3bin
This folder contains the Android package files .apk built by the ADT during the build process and everything else needed to run an Android application.
4res/drawable-hdpi
This is a directory for drawable objects that are designed for high-density screens.
5res/layout
This is a directory for files that define your app's user interface.
6res/values
This is a directory for other various XML files that contain a collection of resources, such as strings and colors definitions.
7AndroidManifest.xml
This is the manifest file which describes the fundamental characteristics of the app and defines each of its components.
Following section will give a brief overview few of the important application files.

The Main Activity File

The main activity code is a Java file MainActivity.java. This is the actual application file which ultimately gets converted to a Dalvik executable and runs your application. Following is the default code generated by the application wizard for Hello World! application:
package com.example.helloworld;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.MenuItem;
import android.support.v4.app.NavUtils;

public class MainActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }
}
Here, R.layout.activity_main refers to the activity_main.xml file located in the res/layout folder. TheonCreate() method is one of many methods that are fi red when an activity is loaded.

The Manifest File

Whatever component you develop as a part of your application, you must declare all its components in a manifest file called AndroidManifest.xml which ressides at the root of the application project directory. This file works as an interface between Android OS and your application, so if you do not declare your component in this file, then it will not be considered by the OS. For example, a default manifest file will look like as following file:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="com.example.helloworld"
   android:versionCode="1"
   android:versionName="1.0" >
   <uses-sdk
      android:minSdkVersion="8"
      android:targetSdkVersion="15" />
   <application
       android:icon="@drawable/ic_launcher"
       android:label="@string/app_name"
       android:theme="@style/AppTheme" >
       <activity
           android:name=".MainActivity"
           android:label="@string/title_activity_main" >
           <intent-filter>
               <action android:name="android.intent.action.MAIN" />
               <category android:name="android.intent.category.LAUNCHER"/>
           </intent-filter>
       </activity>
   </application>
</manifest>
Here <application>...</application> tags enclosed the components related to the application. Attributeandroid:icon will point to the application icon available under res/drawable-hdpi. The application uses the image named ic_launcher.png located in the drawable folders
The <activity> tag is used to specify an activity and android:name attribute specifies the fully qualified class name of the Activity subclass and the android:label attributes specifies a string to use as the label for the activity. You can specify multiple activities using <activity> tags.
The action for the intent filter is named android.intent.action.MAIN to indicate that this activity serves as the entry point for the application. The category for the intent-filter is namedandroid.intent.category.LAUNCHER to indicate that the application can be launched from the device's launcher icon.
The @string refers to the strings.xml file explained below. Hence, @string/app_name refers to theapp_name string defined in the strings.xml fi le, which is "HelloWorld". Similar way, other strings get populated in the application.
Following is the list of tags which you will use in your manifest file to specify different Android application components:
  • <activity>elements for activities
  • <service> elements for services
  • <receiver> elements for broadcast receivers
  • <provider> elements for content providers

The Strings File

The strings.xml file is located in the res/values folder and it contains all the text that your application uses. For example, the names of buttons, labels, default text, and similar types of strings go into this file. This file is responsible for their textual content. For example, a default strings file will look like as following file:
<resources>
    <string name="app_name">HelloWorld</string>
    <string name="hello_world">Hello world!</string>
    <string name="menu_settings">Settings</string>
    <string name="title_activity_main">MainActivity</string>
</resources>

The R File

The gen/com.example.helloworld/R.java file is the glue between the activity Java files likeMainActivity.java and the resources like strings.xml. It is an automatically generated file and you should not modify the content of the R.java file. Following is a sample of R.java file:
/* AUTO-GENERATED FILE.  DO NOT MODIFY.
 *
 * This class was automatically generated by the
 * aapt tool from the resource data it found.  It
 * should not be modified by hand.
 */

package com.example.helloworld;

public final class R {
    public static final class attr {
    }
    public static final class dimen {
        public static final int padding_large=0x7f040002;
        public static final int padding_medium=0x7f040001;
        public static final int padding_small=0x7f040000;
    }
    public static final class drawable {
        public static final int ic_action_search=0x7f020000;
        public static final int ic_launcher=0x7f020001;
    }
    public static final class id {
        public static final int menu_settings=0x7f080000;
    }
    public static final class layout {
        public static final int activity_main=0x7f030000;
    }
    public static final class menu {
        public static final int activity_main=0x7f070000;
    }
    public static final class string {
        public static final int app_name=0x7f050000;
        public static final int hello_world=0x7f050001;
        public static final int menu_settings=0x7f050002;
        public static final int title_activity_main=0x7f050003;
    }
    public static final class style {
        public static final int AppTheme=0x7f060000;
    }
}

The Layout File

The activity_main.xml is a layout file available in res/layout directory, that is referenced by your application when building its interface. You will modify this file very frequently to change the layout of your application. For your "Hello World!" application, this file will have following content related to default layout:
<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" >

   <TextView
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_centerHorizontal="true"
       android:layout_centerVertical="true"
       android:padding="@dimen/padding_medium"
       android:text="@string/hello_world"
       tools:context=".MainActivity" />

</RelativeLayout>
This is an example of simple RelativeLayout which we will study in a separate chapter. The TextView is an Android control used to build the GUI and it have various attribuites like android:layout_width,android:layout_height etc which are being used to set its width and height etc. The @string refers to the strings.xml file located in the res/values folder. Hence, @string/hello_world refers to the hello string defined in the strings.xml fi le, which is "Hello World!".

Running the Application

Let's try to run our Hello World! application we just created. I assume you had created your AVD while doing environment setup. To run the app from Eclipse, open one of your project's activity files and click Run Eclipse Run Icon icon from the toolbar. Eclipse installs the app on your AVD and starts it and if everything is fine with your setup and application, it will display following Emulator window:
Android Hello World
Congratulations!!! you have developed your first Android Application and now just keep following rest of the tutorial step by step to become a great Android Developer. All the very best.

Comments

Popular Post

Most Important Topics. International , Science , UPSC, BPSC..

  International Relations Prev First in-Person Meeting of Quad Countries           Star marking (1-5) indicates the importance of topic for CSE Tags:  GS Paper - 2 Groupings & Agreements Involving India and/or Affecting India's Interests Why in News Recently, the first in-person meeting of  Quad  leaders was hosted by the US. Issues like climate change, Covid-19 pandemic and challenges in the Indo Pacific, amidst China's growing military presence in the strategic region, were discussed in the meeting. Key Points Background: In  November 2017, India, Japan, the US and Australia gave shape to the long-pending proposal of setting up the Quad  to develop a new strategy to keep the critical sea routes in the Indo-Pacific free of any influence. China claims nearly all of the disputed  South China Sea , though Taiwan, the Philippines, Brunei, Malaysia and Vietnam all claim parts of it. The South China Sea is an arm of the Western ...

History of Ladakh

History of Ladakh History of India The standoff at Galwan river raised the question of the significance of Ladakh to India and China. History 1. Ladakh was initially part of Tibetan empire but later broke off in 742 CE after the assassination of King Langdarma. 2. Until the Dogra invasion in 1834, Ladakh was an independent Himalayan state similar to Sikkim and Bhutan. 3. It was integrated into the state of Jammu and Kashmir by the Dogra ruler Gulab Singh. 4. In 1841, Tibet under the Qing dynasty of China tried to invade Ladakh but was defeated by the Sikhs. This led to the Treaty of Chushul by which Tibet agreed to not invade again. 5. After the Anglo-Sikh war in 1845-46, Ladakh was brought under British suzerainty. Significance of Ladakh 1. Ladakh served as an entrepot between Central Asia and Kashmir. Tibetan pashmina shawl was traded through Ladakh to Kashmir. 2. Trade flourished from Karakoram pass to Yarkand and Kashgar to Chinese Turkestan. China’s inte...

Apple is testing a ChatGPT-like AI chatbot

  According to a recent report by Bloomberg's Mark Gurman, Apple is making significant strides in the development of artificial intelligence tools to rival the likes of OpenAI and Google. Internally referred to as "Apple GPT," the tech giant has created a chatbot using its proprietary framework called "Ajax." This framework, built on Google Cloud with Google JAX, enables the creation of large language models similar to ChatGPT and Google's Bard. While Apple is yet to finalize its strategy for consumer release, it is reportedly planning a major AI-related announcement next year. The chatbot's internal rollout faced delays due to security concerns related to generative AI. However, it has been made available to a growing number of Apple employees with special approval, primarily for product prototyping purposes. Apple's chatbot can summarize text and answer questions based on its training data. Although it shares similarities with commercially availabl...

The discovery of Gravitational Waves.

वैज्ञानिकों  ने  अंतरिक्ष  में  गुरूत्वीय  तरंगों  की ऐतिहासिक    की: वैज्ञानिकों ने 11 फरवरी 2016 को घोषणा की कि उन्होंने अंतत: उन गुरूत्वीय तरंगों की खोज कर ली है, जिसकी भविष्यवाणी महान वैज्ञानिक आइंस्टीन ने एक सदी पहले कर दी थी। ब्रह्मांड में जोरदार टक्करों के कारण पैदा होने वाली इन तरंगों की खोज खगोलविदों को इसलिए उत्साहित कर रही है क्योंकि इससे ब्रह्मांड का अवलोकन उसकी क्रमबद्धता में करने का एक नया रास्ता खुल गया है। इस नयी खोज में खगोलविदों ने अत्याधुनिक एवं बेहद संवेदनशील लेजर इंटरफेरोमीटर ग्रेविटेशनल वेव ऑबजर्वेटरी (लीगो) का इस्तेमाल किया, जिसकी लागत 1.1 अरब डॉलर है। लीगो की मदद से उन्होंने दूर दो ब्लैक होल के बीच हुई हालिया टक्कर में पैदा हुई गुरूत्वीय तरंग का पता लगाया। गुरूत्वीय तरंगों की सबसे पहली व्याख्या आंइस्टीन ने वर्ष 1916 में अपने सापेक्षिता के सामान्य सिद्धांत के तहत की थी। ये चौथी विमा दिक्-काल में असाधारण रूप से कमजोर तरंगें हैं। जब बड़े लेकिन सघन पिंड, जैसे ब्लैक होल या न्यूट्रॉन स्टार आपस में टकराते हैं तो उनके गुरूत्...

How to Solve Profit & Loss Questions? Tips & Tricks(SSC CGL)

  How to Solve Profit & Loss        Questions? Tips & Tricks Important Concepts Cost Price  The price at which an article is purchased, is called its cost price. It is abbreviated as  C.P . Selling Price The price, at which an article is sold, is called its selling prices, abbreviated as  S.P. Profit/gain  = SP – CP Profit  % = Profit/(C P)×100 S P  = (100+gain % )/100  ×C P C P  = 100/(100+gain %)×S P Loss If the overall Cost Price exceeds the selling price of the buyer then he is said to have incurred loss . Loss  = C P – S P Loss  % = LOSS/(C P)×100 S P  = (100-loss %)/100×C P C P  = 100/(100-loss %)×S P Profit and Loss Based on Cost Price To find the percent gain or loss, divide the amount gained or lost by the cost.  Example 1 : A toy that cost 80 rupees is sold at a profit of 20 rupees . Find the percent or rate of profit. Answer : Gain / cost...

Follow the Page for Daily Updates!