CSC的程設紀錄

CSC的程式設計相關研究紀錄、開發日誌

顯示具有 EditText 標籤的文章。 顯示所有文章
顯示具有 EditText 標籤的文章。 顯示所有文章

EditText, Focus, Soft Keyboard...

How to close/hide the Android Soft Keyboard?

Issue 2705: Setting requestFocus on EditText prevents soft keyboard from opening

Uhh...I've got some problems here.
But I gotta sleep now...
Sadly, tomorrow is MONDAY... Maybe I have to solve these problems next Saturday.
*Sigh*

Two more issues:
Issue 2771: Disabled EditText can still be edited using on-screen keyboard

Issue 3341: setFocusable() & setFocusableInTouchMode() don't work coreectly

So the solution's here:
Whe you wanna completely disable the soft-kb:

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);

imm.hideSoftInputFromWindow(editText.getWindowToken(), 0);