从网络填充 BaseAdapter
我有一个像这样的 JSON 数组: [{"usename":"user", "user_pic":"图片", "photo":"http://hfhfhfhhfh.jpg", "timestamp":"10-09-10"} {"username":"用户2”,..........}]
我在这个数组中有 10 个 JSONObject,我想用它来填充流:
头像 - 昵称
照片
时间戳
是我的应用程序的流,我想要其他用户的最新帖子。
我怎样才能填充流? 我想我可以使用基础适配器是正确的吗?
太感谢了!
I've a JSON array like this:
[{"usename":"user", "user_pic":"picture", "photo":"http://hfhfhfhhfh.jpg", "timestamp":"10-09-10"} {"username":"user2", ..........}]
I've 10 JSONObject in this array, and I want use it for populate a stream with:
Avatar - Nickname
Photo
Timestamp
Is a stream of my application, I want have the latest post of other user.
How can I populate the stream?
I think i could use a baseadapter is correct?
Thank you so much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您需要 BaseAdapter 或 ArrayAdapter,具体取决于您的实现。
但是您必须覆盖默认实现才能按照您希望的方式显示列表项。
您还可以在此处查看列表视图示例。
http://developer.android .com/resources/samples/ApiDemos/src/com/example/android/apis/view/index.html。
基本上你在你的情况下可能想要的是。
这是谷歌搜索的一个例子
http://developerlife.com/tutorials/?p=327。
如果您需要更多帮助,您可能需要搜索更多示例。
Yes you need a BaseAdapter or an ArrayAdapter depending on your implementation.
But you would have to overwritye the default implementation to show your list items as you want them to be displayed.
You may also check the listview examples here.
http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/index.html.
Basically what you might want in your situation is.
Here is an example from google search
http://developerlife.com/tutorials/?p=327.
You may need to search for more example if you need more help.