EditText 获得焦点后不会失去焦点

发布于 2024-10-22 03:24:46 字数 249 浏览 2 评论 0原文

起初,应用程序加载屏幕后,我的 EditText 就获得了焦点,并且我禁用了该功能

android:focusable="true" 
android:focusableInTouchMode="true"

,但是,单击 EditText 后无法失去焦点。当我尝试在文本区域之外单击时,焦点仍然存在。当我单击 EditText 更改值并按屏幕键盘上的“完成”时,也会发生这种情况。有谁知道我可以实现这个目标的方法吗?

At first my EditText had the focus as soon as the app loaded the screen and I disabled that with

android:focusable="true" 
android:focusableInTouchMode="true"

However, there is no way to lose focus after clicking the EditText. The focus is still there when I try to click outside of the text area. This also happens when I click on the EditText to change the value and press "Done" on the on screen keyboard. Does anyone know a way for me to accomplish this?

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

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

发布评论

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

评论(1

最舍不得你 2024-10-29 03:24:46

仅当您单击其他可以获得焦点的内容时,焦点才会发生变化。问题是:如果你点击一个按钮,你可能不会失去焦点,除非你按照马修所说的去做。问题是: focusableInTouchMode 设置为“true”的按钮现在需要单击两次:一次用于获得焦点,一次用于执行 OnClick。一个棘手的问题,现在也困扰着我

Focus only changes if you click on something else that can gain focus. Issue is: If you click on a button for instance you might not lose focus, unless you do what Mathew said. Problem with that is: A button whose focusableInTouchMode is set to "true", needs now to be clicked TWICE: Once for gaining focus and once for performing OnClick. A nagging issue, that was haunting me as well right now.

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