gpt4 book ai didi

Android Edittext 退格键有问题

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:50:41 26 4
gpt4 key购买 nike

我有一个 AlertDialog,我在其中设置了一个 XML 作为它的 View 。在那个 xml 布局 中,我有一个 EditText。但是在 EditText 中输入数据后,如果我尝试使用退格键删除,字符不会被删除(就像退格键不起作用一样)。

我错过了什么吗?我搜索但没有得到任何适当的解决方案,除了添加 keylistener。我认为它应该工作简单?

任何人都可以帮助我。

这是我的 EditText

<EditText
android:id="@+id/TextBox"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="text">
<requestFocus />
</EditText>

对话代码:

hintDialog = new AlertDialog.Builder(activity)
.setTitle("Enter Your Hint:")
.setView(hintDialogView).create();
hintDialog.setOnKeyListener(new DialogInterface.OnKeyListener() {
@Override
public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event) {
if(keyCode == KeyEvent.KEYCODE_BACK)
hintDialog.dismiss();
return true;
}
});

最佳答案

你有设置 onKeyListeners 吗?这可能是问题的原因。

试试这个:

 hintDialog = new AlertDialog.Builder(activity)
.setTitle("Enter Your Hint:")
.setView(hintDialogView).create();
hintDialog.setOnKeyListener(new DialogInterface.OnKeyListener() {
@Override
public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event) {
if(keyCode == KeyEvent.KEYCODE_BACK)
hintDialog.dismiss();
return true;
}
return false;
});

(添加返回 false;)

关于Android Edittext 退格键有问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11716502/

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