I have a RecyclerView
in which i have an image ,a few TextView
s and 2 ImageButton
s.
I have 7-8 such rows to display in my Activity>
RecyclerView is great in that it is super modular. you can set your custom scroller to the LayoutMananger
You can use https://github.com/apptik/MultiView/tree/master/scrollers
Example:
RecyclerView.SmoothScroller smoothScroller = new FlexiSmoothScroller(getContext())
.setMillisecondsPerInchSearchingTarget(100f));
smoothScroller.setTargetPosition(targetPos);
recyclerView.getLayoutManager().startSmoothScroll(smoothScroller);
you can check more examples at: https://github.com/apptik/MultiView/blob/master/app/src/main/java/io/apptik/multiview/ScrollersFragment.java