Android Simple Button Click Example - ANDROID - Helper

Thursday, April 28, 2011

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/AVvXsEgQ4W3nd8IR_Yf2pJntOHwk1Qd3Pjtn0I1MqZebzHRkFQSeiIApZfq1cv2_asFRiYyGGl3w_sq2Zd1tmx76XN4vXYnu6ZGGZ3GYzqicwdGj-X00umA2JEohRRTcE-2wu2cW5vu7okndVuQ/


https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgvFZ8KeVmtHXZmH6aqBQwaou2T9L-AnjJKFHv29-HvCgscoslw3Slonn8TcALjkfJR7lMlxCWZVRZbKGdL2OORuMoDjF6SC1RlqCIP7rGX3UAzU1i4rMSeAK3uR_IgzjDqdwXHLesLCQw/

6 comments:

  1. I have a main screen where there are 2 button. I want to display a 5 lines of text on click of 1st button and there again on click of back button i have to come to previous main screen. Please tell me how to do it.thanks in advance

    ReplyDelete
  2. thanks..im beginner..so its very helpful for me.!

    ReplyDelete