在Android中完成按键时隐藏软键盘?
我正在努力处理软键盘上的完成按钮。 我无法获得软键盘完成按键来隐藏键盘。 从另一个按钮,它完美的作品
imm.hideSoftInputFromWindow(editText.getApplicationWindowToken(), 0);
但onKeyListener不能按我想要的方式运行。 当我点击editText时,软键盘显示出来,其内容从字符中清除。
感谢收听!
main.xml:
<EditText
android:id="@+id/answer"
android:layout_gravity="center_horizontal" android:textSize="36px"
android:inputType="phone"
android:minWidth="60dp" android:maxWidth="60dp"
/>
Java文件:
private EditText editText;
//...
editText = (EditText)findViewById(R.id.answer);
editText.setOnClickListener(onKeyboard);
editText.setOnKeyListener(onSoftKeyboardDonePress);
//...
// method not working:
private View.OnKeyListener onSoftKeyboardDonePress=new View.OnKeyListener()
{
public boolean onKey(View v, int keyCode, KeyEvent event)
{
if (event.getKeyCode() == KeyEvent.FLAG_EDITOR_ACTION)
{
// code to hide the soft keyboard
imm = (InputMethodManager) getSystemService(
Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(editText.getApplicationWindowToken(), 0);
}
return false;
}
};
private View.OnClickListener onKeyboard=new View.OnClickListener()
{
public void onClick(View v)
{
editText.setText("");
}
};
使用按钮的工作方法(在同一个java文件中):
private View.OnClickListener onDone=new View.OnClickListener()
{
public void onClick(View v)
{
//....
// code to hide the soft keyboard
imm = (InputMethodManager) getSystemService(
Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(editText.getApplicationWindowToken(), 0);
}
};
编辑:当我按下键号“9”键盘隐藏。 这很奇怪。
使用android:imeOptions =“actionDone”,就像这样:
<EditText
...
android:imeOptions="actionDone" />
InputMethodManager inputManager = (InputMethodManager)
context.getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.toggleSoftInput(0, 0);
上下文就是你的活动。
将if语句更改为if (event.getKeyCode() == KeyEvent.KEYCODE_ENTER)
使其使用xml属性android:inputType="phone"
。