在android中解析plist并在列表视图中显示数据
我是 android 初学者,我的要求是解析 plist 文件并在列表视图中显示其结果。
列表视图包含图标图像、图标名称和显示购买该图标的价格的图像按钮。
我已经为此苦苦挣扎了几天,有人可以告诉我解决方案吗?
提前致谢,
Tejaswi Marakini
I am beginner in android, my requirement is to parse a plist file and display its result in the list view.
List view contains an icon image, Name of the icon and an image button which shows price to buy that icon.
I am struggling from few days on this, can anybody let me know the solution?
Thanks in advance,
Tejaswi Marakini
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于 plist 包含 xml,因此您应该使用 xml 解析器。用户 SAX 或 Pull 解析器。使用自定义列表适配器在 ListView 中显示内容
查看这些示例
http://android-er.blogspot.com/2010/04/simple-rss-reader-in-listview.html
http://p-xr.com/ android-tutorial-how-to-parseread-xml-data-into-android-listview/
As plist contains xml, you should use xml parser for that. User SAX or Pull parser. Use custom list adapter to show the content in ListView
Have a look on these examples
http://android-er.blogspot.com/2010/04/simple-rss-reader-in-listview.html
http://p-xr.com/android-tutorial-how-to-parseread-xml-data-into-android-listview/