Get Button Text onClick Android App


If you have a button in your android app and you have set a onClickListner on it and after it is being clicked you need to know what is the text on the button set in the layout.xml follow the below code.

(Button) v).getText(); can get you the text on the button.

//Android Button
private Button androidButton;

@Override
 protected void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   setContentView(R.layout.myapp_main);

  androidButton = (Button) findViewById(R.id.button1);

  androidButton.setOnClickListener(new OnClickListener() {

  @Override
  public void onClick(View v) {

   //To get text of a button when clicked
   String buttonText = (Button) v).getText();
   System.out.println("Value: "+ buttonText);
	
  });
}


















Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap