I've done a chatbot / virtual assistant and I want it to answer the same thing for different words, example: if I write "Hello" or write "hello" it returns the same response: "hello how can I help".
public void assistente(View view) {
if (caixa.getText().toString().equals(cumprimento) {
resposta.setText("Olá, como posso te ajudar?");
rosto.setImageResource(R.drawable.normal);
}
resposta.setText("Olá, como posso te ajudar?");
}
String cumprimento = "Olá"; //Nessa parte eu quero colocar outros valores
I use Android Studio 3.0.1. I'm very new to programming, please explain as easily as possible. Many thanks!