在 ListView 中显示数据和图像
我正在开发一个应用程序。我在 ListView 中显示缩略图图像和相应的数据以及图像,数据和图像都是通过 XML 解析下载和解析的 为了显示图像,我使用了本教程
但我不知道如何在 ListView 中显示解析的数据。
谢谢阿布舍克
I'm Developing an Application. I'm displaying Thumbnail Image and Corresponding data with the image in ListView the data and images both are downloaded and parsed through XML parsing For Displaying images I used this tutorial
Lazy load of images in ListView
But I'm not getting how to display the parsed data in ListView.
Thank you
Abhishek
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这就是你应该做的..
解析数据后为列表视图中的每一行创建对象(即,使用自定义类)
迭代所有对象
添加到 listView 适配器
每次都使用 listview.notifyDataChanged() 函数。
这应该可以解决问题..;)
This is what u should do..
After parsing the data create objects for each row in listview(i.e,use a Custom Class)
Iterate through all the objects
Add to listView Adapter
Use listview.notifyDataChanged() function everytime.
This should do the trick..;)
通过使用
BaseAdapter
,这是可能的。膨胀一个具有textview
和Image view的布局列表视图行。
By using the
BaseAdapter
, its possible.Inflate a layout that havetextview
and Image view inListview row.
请查看下面的链接以获取教程。我相信您会自己解决问题
http://www.vogella。 de/articles/AndroidListView/article.html
Please look in below link for the tutorial. i am sure you will get to resolve you problem on your own
http://www.vogella.de/articles/AndroidListView/article.html