带有自定义对象的数组列表
我有一个非常基本的问题。我正在尝试读取三个 EditText 字段的值,并使用数组适配器将它们保存为数组列表中的一项。我的问题是如何将从 EditTexts 中读取的三个变量分组并将它们添加为数组列表中的单个项目?
I have a very basic question. I am trying to read values of three EditText fields and save them as one item in an arraylist using an arrayadapter. My question is how can I group the three variables I read from the EditTexts and add them as a single item in the arraylist?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
现在将此类添加到 ArrayList..
就像下面一样,
now add this class to ArrayList..
just like below,
您可以创建一个自定义对象来保存 3 个编辑文本中的字符串
并且数组列表可以是
You can create a custom object that holds the strings from 3 edittexts
And the array list can be
这将存储在适配器中
this will stored in the adapter