I've updated my Android Studio to 3.1 stable channel. I've noticed that "All" tabs in palette window are removed and "Legacy" tab is introduced. That tab contains the following:
- ListView
- TabHost
- RelativeLayout
- GridView
I didn't mention the GridLayout
because it's a downloadable dependency rather than a View from the Android APIs.
Which new Views have replaced the views mentioned above?
I know ConstraintLayout
replaces RelativeLayout
, but what replaces the ListView
, the GridView
or the TabHost
? I want to be up-to-date.
RecyclerView
do the job of both list and grid view? Interesting – Alastair