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.

link|improve this question

54% accept rate
I'm not quite sure what you're asking..can you explain a bit more? – Doctor Oreo Jan 12 at 16:42
I want to to have the ViewPager display two of the available pages side by side, just like a book. – cypressious Jan 12 at 19:26
feedback

2 Answers

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.

link|improve this answer
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…

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.