示例:我有一个 EditText 和 1 个按钮(onclick:示例)。我想检查在 EditText 中输入的第一个单词。
public void example (View v) {
if (edittext.getText().toString() .... //How to check the first word that typed in edittext,
ex: if the first word typed in edittext equalsIgnoreCase("a")){
//Action
}