gpt4 book ai didi

Android EditText imeOptions 使 actionSearch 像 actionDone 一样?

转载 作者:行者123 更新时间:2023-11-29 17:37:13 25 4
gpt4 key购买 nike

我有一个奇怪的错误。

我有一个 EditText,我正在使用 TextWatcher 执行搜索,当我键入 3 个及以上的字母时,我正在执行搜索。

直到最近我才有一个普通的 EditText,我想在我的键盘上有一个搜索图标所以我在代码中添加了我的 EditText:

searchField.setImeOptions(EditorInfo.IME_ACTION_SEARCH);

现在它有了搜索图标,现在是我的问题了。当按下搜索图标时,我只想关闭键盘。无需搜索。

这是我的代码:

searchField.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (event != null&& (event.getKeyCode() == KeyEvent.KEYCODE_SEARCH)) {
hideSoftKeyboard();
}
return false;
}
});

hideSoftKeyboard 是关闭键盘的方法,里面的代码是这样的:

public void hideSoftKeyboard() {
if (getActivity().getCurrentFocus() != null) {
InputMethodManager inputMethodManager = (InputMethodManager) getActivity().getSystemService(Activity.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(getActivity().getCurrentFocus().getWindowToken(), 0);
}
}

现在,我的键盘确实关闭了,但出于某种原因,它后面出现了一个“普通”键盘。带有搜索图标的键盘正在关闭,但是出现了带有输入图标的键盘,它没有输入任何内容..没有连接到任何编辑文本或其他东西,我在那个屏幕上只有 1 个编辑文本,我无法弄清楚怎么了。

如果我改回 IME_ACTION_DONE,一切都会恢复正常。

编辑 1:

我在 list 中的 Activity :

<activity
android:name=".UI.activity.HomeActivity"
android:label="@string/app_name"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Holo.Light.NoActionBar"
android:windowSoftInputMode="adjustResize" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

和我在 xml 中的 EditText :

<EditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/search_document_main"
android:typeface="serif"
android:visibility="invisible"
android:singleLine="true"
android:background="@color/top_bar_bg_color"
android:hint="Search" />

知道我做错了什么吗?

另外,有没有一种方法可以在不使用 imeOption 搜索的情况下显示该搜索图标?

最佳答案

尝试从 EditText 窗口获取窗口 token 。也许您当前的焦点项目不是 EditText

public void hideSoftKeyboard() {
InputMethodManager imm = (InputMethodManager) getSystemService(
Context.INPUT_METHOD_SERVICE
);
imm.hideSoftInputFromWindow(editText.getWindowToken(), 0);
}

您还可以简化您的听众:

new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction (TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_SEARCH) {
hideKeyboard();
return true;
}
return false;
}
}

如果您仍然有问题,请添加您的Activity 布局 并添加Activity list 声明

关于Android EditText imeOptions 使 actionSearch 像 actionDone 一样?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30048200/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com