I need to create an app that has 2 special behaviors on a viewPager that has 3 pages:
On page 0, there are 2 images, one on top of the other. the background image doesn't move when going from page 0 to page 1 , but it will move when going from page 1 to page 2 (and vice versa) . On page 1, there is nothing besides the background image from page 0.
In short, to the user, it seems as if the image from page 0 actually unveils the content of page 1 when scrolling to it (since page 1's content is behind page 0).
Some pages would have on top views that move faster than the viewPager, providing an effect as if they float above it, in a semi-3d way . Maybe show up after half the page was scrolled.
Both special behaviors are very hard to think about, and I would like to ask for your suggestions of how to achieve them.
Another tricky thing is that I need to use an indicator of the viewPager, so even if I decide to use multiple viewPagers, I would have to deal with this issue too.