Send button message [closed]

-4

I wanted to ask how can I send a one-button message or the message is written to this button

    
asked by anonymous 16.11.2017 / 16:54

1 answer

1

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
     }
});
    
16.11.2017 / 16:58