I wanted to ask how can I send a one-button message or the message is written to this button
I wanted to ask how can I send a one-button message or the message is written to this button
Example:
Button botao = (Button) findViewById(R.id.meuBotao);
String mensagemEscritaNoBotao = botao.getText();
botao.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Ação para ser executada quando o botão é clicado
}
});