1. 程式人生 > >Android 隱藏、顯示軟鍵盤方法

Android 隱藏、顯示軟鍵盤方法

idg .get isp get 狀態 null return sources col

隱藏軟鍵盤的終極方法:

public class SoftKeyboardUtil {

    /**
     * 隱藏軟鍵盤(只適用於Activity,不適用於Fragment)
     */
    public static void hideSoftKeyboard(Activity activity) {
        View view = activity.getCurrentFocus();
        if (view != null) {
            InputMethodManager inputMethodManager = (InputMethodManager) activity.getSystemService(Activity.INPUT_METHOD_SERVICE);
            inputMethodManager.hideSoftInputFromWindow
(view.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); } }
/** * 隱藏軟鍵盤(可用於Activity,Fragment) */ public static void hideSoftKeyboard(Context context, List<View> viewList) { if (viewList == null) return; InputMethodManager inputMethodManager = (InputMethodManager) context.getSystemService(Activity.INPUT_METHOD_SERVICE);
for (View v : viewList) { inputMethodManager.hideSoftInputFromWindow(v.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); } } }

那 SoftKeyboardUtil 第二個方法的 List<View> viewList 參數是什麽, viewList 中需要放的是當前界面所有觸發軟鍵盤彈出的控件。 比如一個登陸界面, 有一個賬號輸入框和一個密碼輸入框, 需要隱藏鍵盤的時候, 就將兩個輸入框對象放在 viewList 中, 作為參數傳到 hideSoftKeyboard 方法中即可。

如下方法會彈出的隱藏,隱藏的彈出

public static void hideKeyboard() {
    InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
    imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
}

詳細見API:

\android-sdk\sources\android-26\android\view\inputmethod\InputMethodManager.java


Android 手動顯示和隱藏軟鍵盤

https://blog.csdn.net/changsimeng/article/details/72853760

1、方法一(如果輸入法在窗口上已經顯示,則隱藏,反之則顯示)

InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); 
imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS); 

2、方法二(view為接受軟鍵盤輸入的視圖,SHOW_FORCED表示強制顯示)

InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); 
imm.showSoftInput(view,InputMethodManager.SHOW_FORCED);

imm.hideSoftInputFromWindow(view.getWindowToken(), 0); //強制隱藏鍵盤

3、調用隱藏系統默認的輸入法

((InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE)).hideSoftInputFromWindow(WidgetSearchActivity.this
.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); //(WidgetSearchActivity是當前的Activity)

4、獲取輸入法打開的狀態

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); 
boolean isOpen = imm.isActive();//isOpen若返回true,則表示輸入法打開

Android 隱藏、顯示軟鍵盤方法