码迷,mamicode.com
首页 > 其他好文 > 详细

切换viewpager时关闭键盘

时间:2016-08-30 17:30:39      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

  EditText添加焦点监听事件,当该EditText失去焦点时,关闭键盘。

EditText editTextProfileName = (EditText) view
                    .findViewById(R.id.nameEditText);

            editTextProfileName.setOnFocusChangeListener(new OnFocusChangeListener() {

                public void onFocusChange(View v, boolean hasFocus) {
                      if (!hasFocus) {
                            hideKeyboard();
                        }
                }

                private void hideKeyboard() {
                    if (editTextProfileName != null) {
                        InputMethodManager imanager = (InputMethodManager) getActivity()
                                .getSystemService(Context.INPUT_METHOD_SERVICE);
                        imanager.hideSoftInputFromWindow(editTextProfileName.getWindowToken(), 0);

                    }

                }
            });

  学习自:http://stackoverflow.com/questions/17184119/how-to-hide-soft-key-pad-after-changing-one-viewpager-to-another-view-pager

切换viewpager时关闭键盘

标签:

原文地址:http://www.cnblogs.com/xuepeng0521/p/5822521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!