Comment obtenir le texte d'un bouton enfoncé (Android) ?
Je peux obtenir le texte d'un bouton :
String buttonText = button.getText();
Je peux obtenir l'identifiant d'un bouton pressé :
int buttinID = view.getId();
Ce que je n'arrive pas à trouver pour le moment, c'est comment obtenir le texte sur le bouton pressé.
public void onClick(View view) {
// Get the text on the pressed button
}