Skip to main content

Creating Simple Android Project with Widgets

This post is written for the 2nd MobileSIG-meetup BBBangi Chapter, Sunday, October 2nd, 2011…
This apps might look simple and dumb, somehow it just an example for beginner. Shall I say “Buttons and Textboxes in Android for Dummies”.
image
Learning outcome:
At the end of this session you should be able to create an Android app that contains textbox and button widgets, and applying ActionListener to the button…
Pre-requisites:
Before reading this tutorial, you need to read;
  1. If you do not have Eclipse and Android SDK installed, you should read the following http://blog.kerul.net/2011/06/eclipse-helios-android-development.html
  2. How to Create a new Android Project in Eclipse with ADT11.
  3. And it might be useful activate the Properties window by reading this article - http://blog.kerul.net/2011/08/properties-window-for-adt-11-on-eclipse.html
This post contains two examples;
EXAMPLE 1: Dealing with only one Button
EXAMPLE 2: Dealing with two Buttons in an App
Hope you find it useful.
Before I proceed to the examples, let me brief you the elements inside an Android Project through Eclipse IDE (Figure 1).
image_thumb[4]Figure 1
Enhance the Package Explorer (Figure 2) and you will see several folders in the Project.
image_thumb[7]Figure 2
Inside Android Project, there should be;
/src – the Java codes are here
/gen – generated automatically
/assets – put your fonts, videos, sounds here
/res – images, layout and global variables
/drawable-hdpi – images for high spec phones
/drawable-ldpi – images for low spec phones
/drawable-mdpi – images for medium spec phones
/layout – all XML file for the screen(s) layout are here
/values – constant variables can also be here, the value is accessible from all classes and screens
AndroidManifest.xml – app’s permissions need to be registered here – (eg: app can access Internet, phone contacts, camera, etc must be mentioned here)



EXAMPLE 1: Dealing with only one Button
This sample contains two textboxes with only one button as the trigger.
The GUI Layout;
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:id="@+id/textView1" android:text="Sila masukkan nombor pertama"></TextView>
<EditText android:layout_width="match_parent" android:layout_height="wrap_content"
android:inputType="number" android:id="@+id/txtnum1">
<requestFocus></requestFocus>
</EditText>
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:id="@+id/textView2" android:includeFontPadding="true"
android:text="Sila masukkan nombor kedua"></TextView>
<EditText android:layout_width="match_parent" android:layout_height="wrap_content"
android:inputType="number" android:id="@+id/txtnum2"></EditText>
<Button android:layout_width="wrap_content" android:id="@+id/btnadd"
android:layout_height="wrap_content" android:text="ADD"></Button>
<EditText android:layout_width="match_parent" android:layout_height="wrap_content"
android:inputType="number" android:id="@+id/txtresult"></EditText>
</LinearLayout>


The source code; copy and paste in the *.java file in the src folder.



package net.kerul.calc;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;

public class CalculatorActivity extends Activity implements OnClickListener{

private EditText txtnum1, txtnum2, txtresult;
private Button btnadd;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

txtnum1=(EditText) findViewById(R.id.txtnum1);
txtnum2=(EditText) findViewById(R.id.txtnum2);
txtresult=(EditText) findViewById(R.id.txtresult);

btnadd = (Button) findViewById(R.id.btnadd);
btnadd.setOnClickListener(this);

}
public void onClick(View v) {
//method handling button click
double n1,n2, result;
n1=Double.parseDouble(txtnum1.getText().toString());
n2=Double.parseDouble(txtnum2.getText().toString());
result=n1+n2;
txtresult.setText(Double.toString(result));
}
}


The output;

image_thumb5



EXAMPLE 2: Dealing with two Buttons in an App

It has two EditText and two Button. It is to accept two numbers, and if user tap on the button “+”, it will sum-up both numbers. The second button, “-”, will off-course subtract second number from the first.

The GUI Layout;

image_thumb1

The main.xml;



<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="Apps to test Button and Text"/>
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:id="@+id/textView1" android:text="Enter a number"></TextView>
<EditText android:layout_width="match_parent" android:layout_height="wrap_content"
android:inputType="number" android:id="@+id/txtnum1">
</EditText>
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:id="@+id/textView2" android:text="Enter another number"></TextView>
<EditText android:layout_width="match_parent" android:layout_height="wrap_content"
android:inputType="number" android:id="@+id/txtnum2"></EditText>
<TableRow android:id="@+id/tableRow1" android:layout_height="wrap_content"
android:layout_width="match_parent">
<Button android:layout_height="wrap_content" android:layout_width="wrap_content"
android:text=" + " android:id="@+id/btnadd"></Button>
<Button android:layout_height="wrap_content" android:layout_width="wrap_content"
android:text=" - " android:id="@+id/btnsubtract"></Button>
<EditText android:layout_height="wrap_content" android:layout_width="match_parent"
android:freezesText="true" android:text="Result here"
android:editable="false" android:id="@+id/txtresult"></EditText>
</TableRow>

</LinearLayout>


The source code; copy and paste in the *.java file in the src folder.


 

package net.kerul.buttext;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;

public class ButtextActivity extends Activity implements OnClickListener{

//declare all controls
private Button btnadd, btnsubtract;
private EditText txtnum1, txtnum2, txtresult;
private double n1,n2, res;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

btnadd = (Button) findViewById(R.id.btnadd);
btnadd.setOnClickListener(this);

btnsubtract = (Button) findViewById(R.id.btnsubtract);
btnsubtract.setOnClickListener(this);

txtnum1=(EditText) findViewById(R.id.txtnum1);
txtnum2=(EditText) findViewById(R.id.txtnum2);
txtresult=(EditText) findViewById(R.id.txtresult);

}
public void onClick(View v) {
//method handling button click
n1=Double.parseDouble(txtnum1.getText().toString());
n2=Double.parseDouble(txtnum2.getText().toString());

if (v.getId()==R.id.btnadd){
res=n1+n2;
txtresult.setText(Double.toString(res));
}

if(v.getId()==R.id.btnsubtract){
res=n1-n2;
txtresult.setText(Double.toString(res));

}
}
}


 


 


 

image_thumb7

 


 

And the full source code is available here –> http://sdrv.ms/MebA5R

Comments

Popular posts from this blog

Several English proverbs and the Malay pair

Or you could download here for the Malay proverbs app – https://play.google.com/store/apps/details?id=net.kerul.peribahasa English proverbs and the Malay pair Corpus Reference: Amir Muslim, 2009. Peribahasa dan ungkapan Inggeris-Melayu. DBP, Kuala Lumpur http://books.google.com.my/books/about/Peribahasa_dan_ungkapan_Inggeris_Melayu.html?id=bgwwQwAACAAJ CTRL+F to search Proverbs in English Definition in English Similar Malay Proverbs Definition in Malay 1 Where there is a country, there are people. A country must have people. Ada air adalah ikan. Ada negeri adalah rakyatnya. 2 Dry bread at home is better than roast meat home's the best hujan emas di negeri orang,hujan batu di negeri sendiri Betapa baik pun tempat orang, baik lagi tempat sendiri. 3 There's no accounting for tastes We can't assume that every people have a same feel Kepala sama hitam hati lain-lain. Dalam kehidupan ini, setiap insan berbeza cara, kesukaan, perangai, tabia

Submit your blog address here

Create your own blog and send the address by submitting the comment of this article. Make sure to provide your full name, matrix and URL address of your blog. Refer to the picture below. Manual on developing a blog using blogger.com and AdSense, download here … Download Windows Live Writer (a superb offline blog post editor)

Simple Zakat Calculator

This is a simple Zakat Calculator that do some calculation. Provided in the source is the Java source. It contains sample code on how to ; alert user is input is null handle calculation show OK dialog box numerical value parse from string invoke sharing intent admob, etc Screen shots The complete source - https://docs.google.com/file/d/0B34ZxOOoeSDdeURRSVFKek81Q2M/edit?usp=sharing The APK in the Google Store (Taksiran Zakat Emas Kalkulator) The Java code

Pemasangan Joomla! 1.7 pada pelayan web komputer anda

Latihan ini akan memasang sistem pengurusan kandungan laman web ke dalam pelayan web yang anda telah pasang sebelum ini . LANGKAH 1: Aktifkan Pelayan Web dan Pangkalan Data Aktifkan XAMPP Control Panel, melalui “ Start->All Programs->ApacheFriends->XAMPP Control Panel ”. Rajah 2.1 Pastikan pelayan web Apache dan pelayan pangkalan data MySQL diaktifkan dengan klik butang START. -> Rajah 2.2

Bootstrap Template for PHP database system - MyCompanyHR

HTML without framework is dull. Doing hard-coded CSS and JS are quite difficult with no promising result on cross platform compatibility. So I decided to explore BootStrap as they said it is the most popular web framework. What is BootStrap? - Bootstrap is the most popular HTML, CSS, and JavaScript framework for developing responsive, mobile-first web sites. (  http://www.w3schools.com/bootstrap/   ) Available here -  http://getbootstrap.com/ Why you need Flat-UI? Seems like a beautiful theme to make my site look professional. Anyway you could get variety of BootStrap theme out there, feel free to select here  http://bootstraphero.com/the-big-badass-list-of-twitter-bootstrap-resources/ Flat-UI is from DesignModo -   http://designmodo.com/flat/ Web Programming MyCompanyHR – PHP & MySQL mini project (with Boostrap HTML framework) Template 1: Template for the Lab Exercise. This is a project sample of a staff record management system. It has the PHP structured co