我在android中检索此json,我想按日期显示数据(带有viewpager的标签)

例如- 23(Tab1):1)id-9854359 2)id-9854360 || 24(Tab2) id-9854361 2)id-9854360

每个选项卡都有我想显示其数据的recyclerview项,但是问题是我想一起约会,并据此显示数据。我试过使用hashmap,map ...,但还是没有运气。

[
    {
    "end_time": "2020-01-23 01:45:00+00:00",
    "is_booked": false,
    "is_expired": false,
    "slot_id": 9854359,
    "start_time": "2020-01-23 01:30:00+00:00",
    "username": null
    },
    {
    "end_time": "2020-01-23 02:05:00+00:00",
    "is_booked": false,
    "is_expired": false,
    "slot_id": 9854360,
    "start_time": "2020-01-23 01:50:00+00:00",
    "username": null
    },
    {
    "end_time": "2020-01-24 02:45:00+00:00",
    "is_booked": false,
    "is_expired": false,
    "slot_id": 9854359,
    "start_time": "2020-01-24 02:30:00+00:00",
    "username": null
    },
    {
    "end_time": "2020-01-24 03:05:00+00:00",
    "is_booked": false,
    "is_expired": false,
    "slot_id": 9854359,
    "start_time": "2020-01-24 02:50:00+00:00",
    "username": null
    }
    ]

最佳答案

对类隐蔽JSON。 据我所知,在Android中,使用GSON是标准做法。

class Entity {
    String end_time
    boolean is_booked
    boolean is_expired
    long slot_id;
    String start_time;
    String username;
}

List<Entity> entities = gson.fromJson(yourJsonAsString), Entity.class);

提取日期并按日期分组。 我建议使用Java Stream API,因为它仅用于以下任务:
Map<String, List<Entity>> grouppedByDate =
    entities.stream().collect(
        Collectors.grouppingBy(entity -> entity.end_time.split(" ")[0])
    )

创建选项卡 View ,其中每个选项卡都包含列表 View 。

对于选项卡适配器,请使用集合grouppedByDate.entries(),其中entry.getKey()是此选项卡中实体的日期,而entry.getValue()是条目列表。

09-11 18:09
查看更多