I'm taking a fairly recent course on android development, and it uses GridLayout
a few times during the course. However, I've noticed that GridLayout
has been moved to the Legacy tab of Android Studio since the time of recording (I'm using Android Studio 4.1 now). My questions are:
- Why is
GridLayout
legacy now? what was wrong with it? - What layout should you use instead? I'm imagining there was a layout that could provide similar functionality to
GridLayout
which justified moving it to the legacy tab. The only thing I can think of is theTableLayout
, but mimicingGridLayout
s features with it is not always intuitive for me.
Thanks in advance!