Android ViewPager Lag

前端 未结 11 1933
迷失自我
迷失自我 2020-12-28 19:55

Hello I have a viewpager with several pages(using a fragment state pager), and some pngs as backgrounds to those pages. I already followed the Displaying Bitmaps in the Ui (

11条回答
  •  不思量自难忘°
    2020-12-28 20:34

    None of above solutions worked in my case!

    I found a library which works around the issue, and additionally incorporates few more interesting features. Take a look at it here!

    Try this:

    In gradle

    compile 'com.ToxicBakery.viewpager.transforms:view-pager-transforms:1.2.32@aar'
    

    onCreate

    viewPager.setPageTransformer(true, new DefaultTransformer());
    

    You can get some non standard efects by changing second argument, though not all of them work properly.

提交回复
热议问题