天天看點

Android彈出帶搜尋的軟鍵盤

今天的任務就是遇到這麼個問題,需要在點選EditText的時候彈出帶搜尋的輸入法,于是研究了一下EditText的屬性,

發現隻需要一句話便可以實作,在xml檔案中的EditText控件中加入android:imeOptions="actionSearch" 即可。

另外監聽要使用onEditorActionListener

search_edt.setOnEditorActionListener(new TextView.OnEditorActionListener() {
    @Override
    public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
        if(actionId == EditorInfo.IME_ACTION_SEARCH){
            //TODO 搜尋請求
        }
        return false;
    }
});