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);
});
}
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!