EditText inside ListView will not stay focused(ListView 内的 EditText 不会保持焦点)
问题描述
我在 ListView
的每一行内都有一个 EditText
.出于某种原因,当我点击 EditText 时,它会短暂获得焦点,但随后立即失去焦点.
I have an EditText
inside each row of a ListView
. For some reason, when I tap the EditText, it briefly gains focus but then immediately loses it.
我已经尝试过这些事情:
I have tried these things:
listView.setItemsCanFocus(true);
editText.setFocusable(true);
当 EditText
(简要)聚焦时,Enter
键表示 Next
并且存在 auto-correct bar
.当它失去焦点时,软键盘保持向上,但Enter
键变成Return Arrow
,自动更正条
消失.
While the EditText
is (briefly) focused, the Enter
key says Next
and the auto-correct bar
is present. When it loses focus, the soft keyboard stays up, but the Enter
key becomes a Return Arrow
, and the auto-correct bar
disappears.
推荐答案
ListView
中的EditText
非常棘手.如果可能的话,我建议你像避免瘟疫一样避免它们.当我与他们相处时,this answer 很有帮助.如果你只有几个项目,你总是可以只使用 ScrollView
.
EditText
s within ListView
s are extremely tricky. I'd suggest you avoid them like the plague if possible. When I was messing with them, this answer was helpful though. If you only have a few items you can always just use a ScrollView
.
这篇关于ListView 内的 EditText 不会保持焦点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:ListView 内的 EditText 不会保持焦点
基础教程推荐
- Android:对话框关闭而不调用关闭 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01