如何使 EditText 在 ListView 中正常工作?
大家好,
我有一个 ListView,其中每一行都包含一个 EditText。我还有一个数组。数组的长度==ListView 中的行数。
我想将用户输入(EditText 中的文本)存储到数组中。例如,如果我在 ListView 第一行的 EditText 中输入一些文本,我希望该文本存储在 Array[0] 中。但是我如何检测 EditText 属于哪一行?如果该行包含 RadioGroup 但不包含 EditText,我可以检测到该行的位置。
如果我首先在 EditText 中输入一些文本,稍后我想更新我的输入,该怎么办?我怎样才能更新它?
多谢!
Hallo all,
I have a ListView, which contains an EditText in each of it's row. I also have an Array.The length of the Array==the Nr of the rows in the ListView.
I want to store the user input (the text in the EditText) to the Arrray. E.g, if i type some text in the EditText in the first row of the ListView, i want the text to be stored in Array[0]. But how can i detect to which row the EditText belongs to? I can detect the possition of the row if the row contains a RadioGroup, but not a EditText.
What if i first type some text in the EditText and sometime later i want to update mein Input? How can i update it?
Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
EditText 扩展了 Text,而 Text 又扩展了 View。所以你应该能够使用 ID 或标签,不是吗?
EditText extends Text which extends View. So you should be able to use ID's or Tag's don't you ?
或者,您可以执行类似
警告*的操作,该警告来自头部,未经测试。不提供任何保证。
Alternatively, you can do something like this
warning* this comes from the head, not tested. no waranty provided.