Multiple pages at the same time on a ViewPager

前端 未结 8 1429
执念已碎
执念已碎 2020-12-07 09:58

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

8条回答
  •  [愿得一人]
    2020-12-07 10:33

    Please have a look at the getPageWidth Method in the corresponding PagerAdapter. Override it and return e.g. 0.8f to have all child pages span only 80% of the ViewPager's width.

    More info: http://developer.android.com/reference/android/support/v4/view/PagerAdapter.html#getPageWidth(int)

提交回复
热议问题