1

我有清除按钮来清除 EditText。

<Button
        android:id="@+id/bClearText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="right|center_vertical"
        android:layout_marginRight="10dp"
        android:onClick="clearEtSearch"
        android:background="@drawable/delete" />

此方法清除 EditText:

    public void clearEtSearch(View v) {
    etSearch.setText("");
    etSearch.requestFocus();
    showKeyboard(etSearch);
}

我已将下面的代码从隐藏中更改为显示键盘,但它不起作用

    private void showKeyboard(View view) {
    InputMethodManager manager = (InputMethodManager) view.getContext()
            .getSystemService(INPUT_METHOD_SERVICE);
    if (manager != null)
        manager.showSoftInputFromInputMethod(view.getWindowToken(), 0);
}

我做错了什么?请提供建议以更正我的代码。

4

2 回答 2

2

我不确定,但您可以尝试使用Context.INPUT_METHOD_SERVICE而不仅仅是INPUT_METHOD_SERVICE. 有些人正在强制使用软键盘开放式问题以获取更多信息。

您还可以查看如何在聚焦edittext时显示软键盘 查看以下是否有效:

public void clearEtSearch(View v) {
    etSearch.setText("");
    etSearch.requestFocus();

    InputMethodManager manager = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);    
    manager.showSoftInputFromInputMethod(etSearch.getWindowToken(), 0);

}

根据您的需要,您可以尝试不同的InputMethodManager常量,如下所示:

public void clearEtSearch(View v) {
    etSearch.setText("");
    etSearch.requestFocus();
    InputMethodManager manager = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);    
    manager.toggleSoftInput(InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_IMPLICIT_ONLY);
}

或者

public void clearEtSearch(View v) {
    etSearch.setText("");
    etSearch.requestFocus();
    InputMethodManager manager= (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
    manager.showSoftInput(etSearch, InputMethodManager.SHOW_FORCED);
}

我还没有尝试过正确的代码,所以不确定哪个会起作用。请参阅有许多相关问题。希望它对你有用。

于 2013-08-23T01:35:54.963 回答
0

使用此方法并享受

public void showSoftKeyboard() {
        try {
            InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Activity.INPUT_METHOD_SERVICE);
            inputMethodManager.toggleSoftInputFromWindow(getCurrentFocus().getWindowToken(), InputMethodManager.SHOW_FORCED, 0);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
于 2013-08-23T05:24:38.620 回答