Android:ViewPager 切换动画效果

ViewPager 可以设置不同页面切换效果,通过方法 setPageTransformer(boolean reverseDrawingOrder, PageTransformer transformer) 实现。

其中第二个参数 PageTransformer 是关键

PageTransformer 是一个接口,只有一个方法 transformPage() ,参数:第一个是view,第二个是position

 1     public interface PageTransformer {
 2         /**
 3          * Apply a property transformation to the given page.
 4          *
 5          * @param page Apply the transformation to this page
 6          * @param position Position of page relative to the current front-and-center
 7          *                 position of the pager. 0 is front and center. 1 is one full
 8          *                 page position to the right, and -1 is one page position to the left.
 9          */
10         public void transformPage(View page, float position);
11     }

position的可能性的值有,其实从官方示例的注释就能看出:
[-Infinity,-1) 已经看不到了
(1,+Infinity] 已经看不到了
[-1,1]
重点看[-1,1]这个区间 , 其他两个的View都已经看不到了

ViewPage 有三个页面,当前显示的页面,缓存左边和右边页面,左边和右边的页面是看不到的。

详情查看:http://blog.csdn.net/lmj623565791/article/details/40411921/

转载于:https://www.cnblogs.com/liyiran/p/6101526.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值