gpt4 book ai didi

java - 如何只允许键盘在按下编辑文本字段时出现?

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

目前我已经做到了,只有当编辑文本字段被点击时,键盘才会出现。我如何做到这一点,以便当我按下添加按钮或回车按钮时(我已经可以将编辑文本输入添加到下面的 ListView 中的两种方式)键盘再次隐藏,只有当我再次单击编辑文本字段时才会重新出现?

enter image description here

最佳答案

This code will focus on editText and show keyboard when clicking on the button

        button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
editText.requestFocus();
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(editText, InputMethodManager.SHOW_IMPLICIT);
}
});

// This code will hide the keyboard, if it is already show

    button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
hideSoftKeyboard(MainActivity.this);
}
});


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

关于java - 如何只允许键盘在按下编辑文本字段时出现?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49705220/

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