Search code examples
scrollviewandroid-linearlayout

How to make linearLayout scroll without putting it inside scrollview


I have a linearlayout containing

textView
imageView
Horizontal recyclerview
TextView
Horizontal Recyclerview
Webview

How to make it scrollable without putting it inside scrollview?


Solution

  • According to the android developers site, it is recommended not to have RecyclerView / ListView in the ScrollView.

    Never add a RecyclerView or ListView to a scroll view. Doing so results in poor user interface performance and a poor user experience.

    For reference https://developer.android.com/reference/android/widget/ScrollView

    Also, use of NestedScrollView is advised.