Unscrolled Horizontal RecyclerView
Scrolled Horizontal RecyclerView
I want the Google Inbox application for Android as a user interface in my APP, I know it used "RecyclerView" to achieve this. I have two questions
1. How to make the first horizontal card start to draw after some left padding, coz according to the hierarchy viewing RecyclerView shows & Scrolls from end to end, how to align the first element with a given left distance?
2. When we use this type of nested recycler views, how can I support adapters of the horizontal view of recyclers so that I do not have to recreate it in every `onBindViewHolder ()` callback to avoid reinflation on each scroll?
source share