RecyclerView hide TextView inside Holder (Custom TV menu)
I am creating a menu for my TV app, but since I couldn't get something like a NavigationDrawer working, I am using a RecyclerView with ImageButtons and TextViews. When the RecyclerView loses focus, I want to hide all the TextViews so that the RecyclerView collapses into a smaller menu. As an example you can look at the NetFlix sidemenu.
Is there a better way than a RecyclerView?
Currently everything is working except for the show/hide of the TextViews. My code:...