我想把EditText上的焦點移除,例如,如果鍵盤出現,用戶會用後退鍵把它隱藏。我想實現焦點和光標的隱藏,請大家提提意見如何實現?
this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
// hide virtual keyboard
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(mYourEditText.getWindowToken(), 0);