Android ViewPager - Show preview of page on left and right

后端 未结 10 2600
旧巷少年郎
旧巷少年郎 2020-12-02 03:52

I\'m using Android\'s ViewPager. What I want to do is to show a preview of the page on both the left and the right. I\'ve seen where I can use a negative

10条回答
  •  生来不讨喜
    2020-12-02 04:51

     override fun getPageWidth(position: Int): Float {
        return 0.7f
    }
    

    Add this in adapter class file, This worked for me

提交回复
热议问题