我有清除按钮以清除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);
}
我做错了什么?请提出修正我的代码的建议。
答案 0 :(得分:2)
我不确定,但您可以尝试使用Context.INPUT_METHOD_SERVICE
而非INPUT_METHOD_SERVICE
。有些人Forcing the Soft Keyboard open提出更多问题。
您还可以看到How to show soft-keyboard when edittext is focused 看看以下是否有效:
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);
}
我没有尝试过代码,所以不确定哪一个会起作用。请参阅有许多相关问题。希望它适合你。
答案 1 :(得分: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();
}
}