Is there a possibility to display two pages at the same time, when using a ViewPager? I'm not looking for an edge effect, but rather for two full pages at the same time.
Thanks in advance.
|
Is there a possibility to display two pages at the same time, when using a Thanks in advance.
| |||||
feedback
|
|
I don't think that's possible with the limitations of a View Pager. It only allows a user to view pages 1 at a time. You might be able to work something out with the use of fragments, and have 2 ViewPager fragments side by side and use buttons to work out the page flipping you want to implement, but the code may become very complex. You can try something like a ViewFlipper - where you can do a lot more customizations (including animations). Hope this helps. | |||
|
feedback
|
|
Maybe you could do that by using an horizontal stack of fragments (see that blog entry for an example on how to implement a vertical stack of two different fragments). You'll have to adapt that to your use case but it should work… | |||
|
feedback
|