如何为firebaseRecyclerAdapter创建查询以显示用户正在关注的用户的帖子

时间:2017-05-02 19:29:45

标签: android firebase recycler-adapter

我需要查询firebaseRecyclerAdapter以显示用户关注的用户帖子。

post {
    1 {
        post_image: abc
        uploaded_by: a
    }
    2 {
        post_image: def
        uploaded_by: b
    }

}
followers {
    here b and c are following a
    a {
        b: b
        c: c
    }
}
following {
    here a is following b and c
    b {
        a: a
    }
    c {
        a: a
    }
}

1 个答案:

答案 0 :(得分:0)

没有直接的方法,你必须在你的客户端做一些工作。我关注this文章,我能够在我的应用程序中实现以下功能