I'm trying to retrieve content form Firebase and place it on a TableLayout Android. Normal queries and event listeners or Firebase UI?
I'm new to both Android and Firebase so your help would be the most appreciated... thanks in advance
I'm trying to retrieve content form Firebase and place it on a TableLayout Android. Normal queries and event listeners or Firebase UI?
I'm new to both Android and Firebase so your help would be the most appreciated... thanks in advance
You can use the RecyclerView
and set its layout by RecylcerView.setLayoutManager(layoutManager)
. The layoutManager can be defined as a LinearLayoutManager
which supports displaying a list in a linear fashion. But you can also utilize a GridLayoutManager
, which probably comes closest to a TableLayout
. More information on the LayoutManager can be found in the documentation.
For read/write methods in Firebase a good explanation is given here. It describes the most common methods.