【发布时间】:2018-07-07 08:12:13
【问题描述】:
所以,我正在制作一个需要显示交易列表的应用程序,我可以在其中获取交易的日期和时间,如下所示
{
"transaction_id": "7",
"transaction_date": "2018-06-06 04:46:01.0",
"amount": "499.50",
"user_id": "2",
"currency": "MXN",
"associate_id": "2",
"associate": {
"is_active": "N",
"associate_type": "asd",
"name": "asd",
"created_date": "12-Feb-2018 07:32:12 AM",
"associate_id": "2",
"url": null,
"last_update_date": "12-Feb-2018 07:32:12 AM"
},
"card_id": "1",
"card": null
}
我正在使用recyclerView进行填充,现在我想显示列表如下;
那么,有人可以帮我完成这个过程吗?
【问题讨论】:
-
查看下面的教程,逐步介绍如何使用回收站视图。 androidhive.info/2016/01/android-working-with-recycler-view
标签: android json retrofit2 android-recyclerview