Android Button onClickListener

 Button button = (Button) findViewById(R.id.your_button);
 button.setOnClickListener(new OnClickListener() {
 @Override
 public void onClick(View v) {
            Toast.makeText(firstActivity.this, "Message by Donor", 
            Toast.LENGTH_SHORT).show(); 
 } 
 });

Comments

Popular posts from this blog

Edit text with clear button in Android app

Input filter (space not allowed) for EditText

Change Apache Tomcat Port Number