自定义首选项,包括 EditText

发布于 2024-10-11 08:32:54 字数 247 浏览 3 评论 0原文

我正在创建一个包含 EditText 的自定义首选项。

问题是当用户单击 EdiText 输入建议框打开时,EditText 失去焦点。当再次点击EditText进行输入时,直到输入“空格”才会出现问题,从而导致出现建议框并因此失去焦点。

我所说的建议框是指在 EditText 中输入文本时弹出的框

I am creating an custom preference which contains an EditText.

The problem is when user clicks the EdiText for input suggestion box opens up and EditText looses focus. When EditText is clicked again for input, no problem occurs until 'blank space' is entered, which results in suggestion box and hence loss of focus.

What I mean by suggestion box is the box which pops up when entering text in EditText

Suggestion Box on EditText

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蒗幽 2024-10-18 08:32:55

您可以通过在 XML 文件中使用 android:inputType="textFilter" 属性来禁用自动建议。

You can disable Auto Suggestion by using android:inputType="textFilter" attribute in your XML file.

听风念你 2024-10-18 08:32:55

另一个对我有用的解决方案:
在 AndroidMenifest.xml 活动中添加 android:windowSoftInputMode="adjustPan" 。

在这里找到:
http://www.mail-archive.com/[电子邮件受保护]/msg132688.html

Another solution that worked for me:
In AndroidMenifest.xml add android:windowSoftInputMode="adjustPan" in the activity.

Found here:
http://www.mail-archive.com/[email protected]/msg132688.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文