gpt4 book ai didi

java - 按下键盘上的完成时如何不关闭键盘

转载 作者:太空狗 更新时间:2023-10-29 22:53:41 26 4
gpt4 key购买 nike

当用户按下软键盘上的“完成”时,键盘关闭。我想要它,这样它只会在特定条件为真时关闭(例如,密码输入正确)。

这是我的代码(在按下“完成”按钮时设置一个监听器):

final EditText et = (EditText)findViewById(R.id.et);
et.setOnEditorActionListener(new OnEditorActionListener()
{
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event)
{
if(actionId==EditorInfo.IME_ACTION_DONE)
{
if (et.getText().toString().equals(password)) // they entered correct
{
// log them in
}
else
{
// bring up the keyboard
getWindow().setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);

Toast.makeText(Main.this, "Incorrect.", Toast.LENGTH_SHORT).show();
}
}
return false;
}
});

我意识到这不起作用的原因可能是因为它在 它实际上自行关闭软键盘之前运行了这段代码,但这就是我需要帮助的原因。我不知道其他方法。

一个可能的答案主题是:

activityRootView.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() { 

诸如此类,但我不确定。


解决方案:

EditText et = (EditText)findViewById(R.id.et);
et.setOnEditorActionListener(new OnEditorActionListener()
{
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event)
{
if(actionId==EditorInfo.IME_ACTION_DONE)
{
if (et.getText().toString().equals(password)) // they entered correct
{
// log them in
return false; // close the keyboard
}
else
{
Toast.makeText(Main.this, "Incorrect.", Toast.LENGTH_SHORT).show();
return true; // keep the keyboard up
}
}
// if you don't have the return statements in the if structure above, you
// could put return true; here to always keep the keyboard up when the "DONE"
// action is pressed. But with the return statements above, it doesn't matter
return false; // or return true
}
});

最佳答案

如果您从 onEditorAction 方法返回 true,则不会再次处理操作。在这种情况下,您可以返回 true 以在操作为 EditorInfo.IME_ACTION_DONE 时不隐藏键盘。

关于java - 按下键盘上的完成时如何不关闭键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19458962/

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