Android中软键盘(输入法)收起的方法

package com.simon.util;
 
import android.app.Activity;
import android.content.Context;
import android.view.inputmethod.InputMethodManager;
 
public class KeyboardUtils {
    /**
     * 隐藏键盘的方法
     *
     * @param context
     */
    public static void hideKeyboard(Activity context) {
        InputMethodManager imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
        // 隐藏软键盘
        imm.hideSoftInputFromWindow(context.getWindow().getDecorView().getWindowToken(), 0);
    }
}
上一篇:List去重


下一篇:Jmeter随笔:Jmeter之JSON Extractor