当EditText失去焦点时,关闭键盘

时间:2014-01-07 18:58:58

标签: android android-layout keyboard

我有一个EditText,我想控制键盘。当EditText具有焦点时,键盘应该出现,然后一旦我点击任何其他视图,我希望键盘消失。我尝试以下代码,但确实有效

mEditText.setOnFocusChangeListener(new OnFocusChangeListener() {

            @Override
            public void onFocusChange(View v, boolean hasFocus) {
                if (hasFocus) {
                    getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
                } else {
                    InputMethodManager imm = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
                    imm.hideSoftInputFromWindow(mEditText.getWindowToken(), 0);
                }

            }
        });

1 个答案:

答案 0 :(得分:1)

假设您的最外层布局为RelativeLayout(您也可以为其他人做类似的事情),您可以执行以下操作:

private RelativeLayout layout;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    //....
    layout = (RelativeLayout) findViewById(R.id.yourOutermostLayout);
    onTapOutsideBehaviour(layout);
}   

private void onTapOutsideBehaviour(View view) {
    if(!(view instanceof EditText) || !(view instanceof Button)) {
        view.setOnTouchListener(new OnTouchListener() {
            public boolean onTouch(View v, MotionEvent event) {
                hideSoftKeyboard(YourCurrentActivity.this);
                return false;
            }

        });
    }
}


\\Function to hide keyboard
private static void hideSoftKeyboard(Activity activity) {
    InputMethodManager inputMethodManager = (InputMethodManager)  activity.getSystemService(Activity.INPUT_METHOD_SERVICE);
    inputMethodManager.hideSoftInputFromWindow(activity.getCurrentFocus().getWindowToken(), 0);
}

此处的onTapOutsideBehaviour功能,EditTextButton视图的其他功能,如果用户点击其他任何地方,则会隐藏键盘。如果您有任何复杂的自定义布局,则可以排除其他视图,如果用户单击该视图,则不会隐藏键盘。

它对我有用。希望它可以帮到你。