public void onClick(View view) {
if (editText.getText().length() == 0) {
textResult.setText("Введите слово!");
} else {
textResult.setText(editText.getText()+ "Сюда нужно вывести слово из базы");
}
}
}
public static int randInt(int min, int max) {
// NOTE: Usually this should be a field rather than a method
// variable so that it is not re-seeded every call.
Random rand = new Random();
// nextInt is normally exclusive of the top value,
// so add 1 to make it inclusive
int randomNum = rand.nextInt((max - min) + 1) + min;
return randomNum;
}