如何将ArrayList数据设置到ListView中?
我在 ArrayList 中有数据,例如:
[android_metadata, test1, test5, test4, test2, test3, test10, test1002, abcd, zxy, re, test1001, testing, test21, test12]
现在我想将这些数据设置到 android 中的 ListView 中。 请在这件事上帮助我。 我见过很多例子。但我是否必须实现 getter setter 类来存储数据并将其显示到 ListView 中? 我只需将数据列表上方显示到列表视图中并设置其 ClickEvent。 请给我一些代码来完成这样的实现。
I have Data in ArrayList like:
[android_metadata, test1, test5, test4, test2, test3, test10, test1002, abcd, zxy, re, test1001, testing, test21, test12]
Now i want to Set such data in to the ListView in android.
Please help me in this matter.
I have seen many Example. but should i have to implement getter setter class to store data and display it into ListView ?
I have just to show Just above List of data in to List View and set its ClickEvent.
Please Give me Some code to done such implement.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个代码
try this code
这是例子
This is the example
作为对 Balaji.K 答案的补充,您不需要
String[]
数组。您可以直接使用 ArrayAdapter 将 ArrayList 附加到 ListView:
As a complement to Balaji.K's answer, you don't need the
String[]
array.You can attach an ArrayList to a ListView by using an ArrayAdapter directly: