Wednesday, December 26, 2012

Android Simple Button Click Example


SIMPLE BUTTON CLICK

SOURCE CODE [main.xml] is

<?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="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />

                <Button android:id="@+id/button1"
android:layout_width="100px"
                                android:layout_height="wrap_content"
android:text="Button 1" />

                <Button android:id="@+id/button2"
android:layout_width="100px"
                                android:layout_height="wrap_content"
android:text="Button 2" />

</LinearLayout>

SOURCE CODE [ButtonExample.java] is

package com.ButtonExample;

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

public class ButtonExample extends Activity
{
Button b1,b2;

public void onCreate(Bundle savedInstanceState)
{
                                super.onCreate(savedInstanceState);
                                setContentView(R.layout.main);

b1 = (Button) findViewById(R.id.button1);
b2 = (Button) findViewById(R.id.button2);

b1.setOnClickListener(new OnClickListener()
{
public void onClick(View v)
{
Toast msg = Toast.makeText(getBaseContext(),
                                                                                "You have clicked Button 1", Toast.LENGTH_LONG);
                                                                msg.show();
}
                                });

b2.setOnClickListener(new OnClickListener()
{
public void onClick(View v)
{
Toast msg = Toast.makeText(getBaseContext(),
                                                                                "You have clicked Button 2", Toast.LENGTH_LONG);
 msg.show();
}
                                });
 }
}

The OUTPUT will be


https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhCbTF_xP-g4ZCoQya6JsDbfHiTc7TUkGppOzFGS76In3QbnQ6AIr3dmQUKxUj_q7LvI8VffJy_kPNv5HxUbl_AqDsCBHRZxomhvxLDNptxysQgjv_BEM-NwOa043i3FyqbC-87D8ELcZA/


https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhLjbgwixqLS3-xEkzX-1bhSQuxquKWJcPwhmoF-w2UnYa0MeV8uJ6tJbSyKFbge4p_FwfNh4hOmbf07cZXECM9OGdR5_YzgBY2z0MDz1p1R5f9SnObRRx-nbgGg8URQHEx9-WuPFu_MJ4/

No comments:

Post a Comment