Search code examples
androidviewscrollviewandroid-viewgroup

Why we can not add direct multiple views in scrollview?


I am new to Android Development and learning ViewGroups. So, I found it very strange that why we can't add more than one direct view or viewGroups in scrollview?


Solution

  • Well why not add one viewgroup like (LinearLayout) to your scrollView and then add the views into this viewgroup.

    You can always use a RecyclerView which is the best approach for different view types in a list.