我正在尝试编写一个响应文本的基本 AI。
但是,在这段代码中;
public void registermessage(View view) {
if (edittext.getText().toString().contains("hello")){
test.setText("Hello, sir.");
} else{
test.setText("It would be better off to say hello first, sir.");
}
每当我写 Hello 时,它都不会注册为 hello。我想禁用该编辑文本中大写字母的任何过滤器。我怎么做?
谢谢!