用户搜索后隐藏键盘?

问题描述 投票:13回答:3

我有一个活动,其中有一个EditText,并在输入键搜索结果显示,所以我只想关闭键盘,当搜索结果即将显示,以防止用户必须这样做。但是,如果用户想要优化他的搜索,键盘应该打开,如果他再次点击EditText。

这比我想象的要困难得多,我一直在搜索并尝试了一些大多数甚至不关闭我的HTC键盘的东西,一种方法,其中InputType设置为INPUT_NULL关闭键盘,但之后不打开。

有关如何做到这一点的任何建议?

android android-layout android-edittext android-keypad
3个回答
19
投票
@Override
public boolean onQueryTextSubmit(String query) {
    // Your search methods

    searchView.clearFocus();
    return true;
}

直截了当,干净利落。


11
投票

正确的方法:

  1. set imeOptions"actionSearch"
  2. 初始化输入和搜索按钮的侦听器(如果提供) searchEditText.setOnEditorActionListener(new TextView.OnEditorActionListener() { @Override public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { if (actionId == EditorInfo.IME_ACTION_SEARCH) { performSearch(); return true; } return false; } }); view.findViewById(R.id.bigSearchBar_button).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { performSearch(); } });
  3. 用户单击搜索时隐藏键盘。为确保用户最小化和恢复Activity时不会显示键盘,您必须从EditText中移除焦点 private void performSearch() { searchEditText.clearFocus(); InputMethodManager in = (InputMethodManager)getActivity().getSystemService(Context.INPUT_METHOD_SERVICE); in.hideSoftInputFromWindow(searchEditText.getWindowToken(), 0); ... perform search ... }

3
投票

我相信这段代码会关闭键盘:

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);

如果没试试这个:

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);

让我知道这些是否有效

© www.soinside.com 2019 - 2024. All rights reserved.