Android ListView 中的 EditText
我在使 ListView 行中的 EditText 正常运行时遇到了很多麻烦。有谁知道有任何教程可以引导您完成整个过程吗?
谢谢!
I am having a lot of trouble getting an EditText within a ListView row to behave correctly. Does anyone know of any tutorials that walk you through the process?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个答案可以帮助您
ListView中的Focusable EditText
如何正确处理 ListView 内的 Android EditText 输入?
This answers can help you out
Focusable EditText inside ListView
How to correctly handle Android EditText input inside a ListView?
从 Android 4.1.0 开始,这两个组件似乎无法按预期协同工作,其中存在问题。有各种建议的解决方法,但所有看起来都像是低级黑客,可能会停止工作,甚至在未来的版本中导致自己的问题。
可以使用 LinearLayout 来模拟列表,并且花费相当的精力。 EditText 与 LinearLayout 的配合要好得多。
As of Android 4.1.0, these two components seem not working together as expected, something is buggy there. There are various proposed work arounds but all look like a low level hacks that may stop working or even cause they own problems in the future versions.
It is possible to use LinearLayout to simulate a list with comparable effort. EditText talks much better with LinearLayout.