RecyclerView with page scrolling (Vertical ViewPager) - android-recyclerview

I want to open a different row on scrolling RecyclerView vertically and hide previous row completely. Similar to ViewPager but vertically. I have tried the library VerticalViewPager, but it is just a vertical RecyclerView.
Please suggest me.

Related

How to make a recyclerview that shows one item and shows another item when it is swiped horizontally?

For example the recyclerview should show one image at the same time and other image should be shown when the recyclerview is swiped horizontally.(https://i.stack.imgur.com/4BBrs.jpg)
I use Linear Layout as horizontally to show images.
I've found a solution. I wanted to show just one item or image at the same time in a recylerview and when the recyclerview is swiped next item would be shown to the user. That work is just basic as adding that piece of code in the below after making the configuration of your recylerview.
PagerSnapHelper().attachToRecyclerView(yourRecyclerView)

recyclerview with both vertical and horizontal scrolling use layoutManager

I want to create a table using RecyclerView that scrolls both horizontally and vertically (without using the HorizontalScrollView)
I used this class
https://github.com/devunwired/recyclerview-playground/blob/master/app/src/main/java/com/example/android/recyclerplayground/layout/FixedGridLayoutManager.java
But unfortunately it has a bug and has not been updated since 2016.
For example, I want the page to scroll from right to left when opened activity, but it is not possible
Please help me if anyone knows.

Scroll through the contents of a RecyclerView using an outer ScrollView

I have a RecyclerView located at the bottom of the inside of a vertical ScrollView. Now each RecyclerView item has an OnClickListener which "expands" the item's layout so that more details are shown. Now i noticed that when i have multiple item layouts expanded and i try to scroll up and down, logically the scroll is happening inside of the RecyclerView first thus :
Scrolling at a lower speed than it would be if it was scrolling outside of the RecyclerView and inside of the ScrollView
When you scroll upwards , the scrolling comes at a stop as you reach the top of the RecyclerView and then you need to scroll again to scroll through the rest of the ScrollView layout.
Furthermore, since the bottom part of the whole layout is occupied by the RecyclerView, in order to scroll upwards within the parent scrollview, you need to scroll to the top of the RecyclerView first, hit the top (where the indicator lights up) and then scroll upwards again.
Is there any way that i can use the outer ScrollView to scroll through the RecyclerView items and their expanded layouts? Can i scroll through the main layout when i'm scrolling from within the recyclerview?
A NestedScrollView should be used instead of ScrollView, that is if you want to stick with scroll views in general.
This approach is also explained here.
Or you can replace the entire scroll view with a large RecyclerView. It can be vanilla or with Epoxy.

PlaceHolderView - how insert a Listview or Recyclerview

Has anyone used a PlaceHolderView lib?
https://github.com/janishar/PlaceHolderView
has anyone ever come across the problem of putting a ListView or RecyclerView book inside the PlaceHolderView custom item?
need to insert a listview or recyclerview in the blank space in the image below
Exemple layout

How do I make a RecyclerView horizontal scroll to have page boundaries similar to ViewPager

I am having trouble with this. I've been trying to use RecyclerView to have a page boundaries like ViewPager but prove to be difficult to do. Is there a way to overcome this problem?