5 Ways to handle button click event in android
When writing software very rarely is there only one way to do this things,this is true when wiring up View events,five methods are shown here. 1.U sing Member Class public class main extends Activity { @Override public void onCreate ( Bundle savedInstanceState ) { super . onCreate ( savedInstanceState ) ; setContentView ( R. layout . main ) ; //attach an instance of HandleClick to the Button findViewById ( R. id . button1 ) . setOnClickListener ( new HandleClick ( ) ) ; } private class HandleClick implements OnClickListener { public void onClick ( View arg0 ) { Button btn = ( Button ) arg0 ; //cast view to a button // get a reference to the TextView TextView tv = ( TextView ) findViewById ( R. id . textview1 ) ; // update the TextView text tv. setText ( "You pressed " +