I have a linearlayout
containing
textView
imageView
Horizontal recyclerview
TextView
Horizontal Recyclerview
Webview
How to make it scrollable
without putting it inside scrollview
?
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.