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
ViewPager
You have to override the getPageWidth() method on the viewpager's Adapter. For Example:
getPageWidth()
@Override public float getPageWidth(int position) { return 0.9f; }
Try that code in your Adapter and then you'll understand.