As you can see in the code, when I click I'm defining the phrase in a random way, but when I click, I want the phrase to be defined by the indexes myself, how do I do this?
Public class MainActivity extends AppCompatActivity {
private TextView textoNovaFrase;
private Button botaoNovaFrase;
private String[] frases = {
"Se você traçar metas absurdamente altas e falhar, seu fracasso será muito melhor que o sucesso de todos",
"O sucesso normalmente vem para quem está ocupado demais para procurar por ele",
"Se você não está disposto a arriscar, esteja disposto a uma vida comum"
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
textoNovaFrase = (TextView) findViewById(R.id.textoNovaFraseId);
botaoNovaFrase = (Button) findViewById(R.id.botaoNovaFraseId);
botaoNovaFrase.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Random randomico = new Random();
int numeroAleatorio = randomico.nextInt( frases.length );
textoNovaFrase.setText( frases[ numeroAleatorio ] );
}
});