Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个应用程序。我在 ListView 中显示缩略图和相应的数据与图像数据和图像都通过 XML 解析下载和解析为了显示图像我使用了本教程
ListView 中图像的延迟加载
但我不知道如何在 ListView 中显示解析的数据。
谢谢
阿布舍克
这是你应该做的。。
解析数据后,为列表视图中的每一行创建对象(即,使用自定义类)
遍历所有对象
添加到列表视图适配器
每次都使用 listview.notifyDataChanged() 函数。
这应该可以解决问题.. ;)
通过使用BaseAdapter,它可能。膨胀在 Listview 行中具有textview和 Image 视图的布局。
BaseAdapter
textview
请在下面的链接中查看教程。我相信你会自己解决你的问题
http://www.vogella.de/articles/AndroidListView/article.html