Board logo

標題: Android App - 即時判斷 Edittext 的內容 [打印本頁]

作者: admin    時間: 2013-6-19 23:41     標題: Android App - 即時判斷 Edittext 的內容

EditText textInput = (EditText) findViewById(R.id.editText4);
textInput .addTextChangedListener(new TextWatcher() {
    public void afterTextChanged(Editable s) {
        if(s.toString().equals("test")) {                   
        }
    }
    public void beforeTextChanged(CharSequence s, int start, int count, int after){
    }
    public void onTextChanged(CharSequence s, int start, int before, int count)  {
    }
});




歡迎光臨 How2Do (http://forum.how2do.com.hk/) Powered by Discuz! 7.2