在 ListView 中显示数据和图像

发布于 2024-12-17 16:10:17 字数 299 浏览 0 评论 0原文

我正在开发一个应用程序。我在 ListView 中显示缩略图图像和相应的数据以及图像,数据和图像都是通过 XML 解析下载和解析的 为了显示图像,我使用了本教程

延迟加载图像ListView

但我不知道如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

淡淡の花香 2024-12-24 16:10:17

这就是你应该做的..

  1. 解析数据后为列表视图中的每一行创建对象(即,使用自定义类)

  2. 迭代所有对象

  3. 添加到 listView 适配器

  4. 每次都使用 listview.notifyDataChanged() 函数。

这应该可以解决问题..;)

This is what u should do..

  1. After parsing the data create objects for each row in listview(i.e,use a Custom Class)

  2. Iterate through all the objects

  3. Add to listView Adapter

  4. Use listview.notifyDataChanged() function everytime.

This should do the trick..;)

贪了杯 2024-12-24 16:10:17

通过使用BaseAdapter,这是可能的。膨胀一个具有textview和Image view的布局
列表视图行。

By using the BaseAdapter, its possible.Inflate a layout that have textviewand Image view in
Listview row.

魔法唧唧 2024-12-24 16:10:17

请查看下面的链接以获取教程。我相信您会自己解决问题

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文