gpt4 book ai didi

android - editText 没有失去焦点

转载 作者:IT老高 更新时间:2023-10-28 23:11:01 26 4
gpt4 key购买 nike

当我点击它时,editText 在我的应用程序中没有失去焦点,它一直有橙色边框和那个黑线光标..我根据editText周围的这个做了一个LinearLayout: Stop EditText from gaining focus at Activity startup所以它不会专注于应用程序的启动..

这是我的代码:

final EditText et = (EditText)findViewById(R.id.EditText01);

final InputMethodManager imm = (InputMethodManager) getSystemService(
INPUT_METHOD_SERVICE);

et.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
imm.showSoftInput(et, InputMethodManager.SHOW_IMPLICIT);
}
});

et.setOnFocusChangeListener(new View.OnFocusChangeListener() {
public void onFocusChange(View v, boolean hasfocus) {
if(hasfocus) {
imm.showSoftInput(et, InputMethodManager.SHOW_IMPLICIT);
} else {
imm.hideSoftInputFromWindow(et.getWindowToken(), 0);
}
}
});

但是,当我点击editText之外的任何地方时,它似乎并没有调用onFocusChange!

最佳答案

这很简单。您可以将以下内容放入 LinearLayout 或其他任何内容中:

android:focusableInTouchMode="true"

关于android - editText 没有失去焦点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4489439/

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