Hi all,
I am accessing data structured like this:
"UID": {
"Groceries": {
"amount": 25000
, "refreshCode": 0
, "lastRefresh": "YYYY-MM-DD"
, "balance": 2695
}
, "Gas": {
"amount": 4343
, "refreshCode": 1
, "lastRefresh": "YYYY-MM-DD"
, "balance": -23
}
And I would like to put it into a RecyclerView with FirebaseUI. One of the pieces of information that I need to display when I bind my ViewHolder is the key (in this case "Groceries" or "Gas". If I take my Firebase reference up to include UID, how would I access the names of the keys? Or do I need to store them as a separate value in each entry?
Also, is there a place to go for documentation on FirebaseUI for Android? That would be very useful for me.
Thanks!
-Justin