Android:ViewPager 切换动画效果

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

其中第二个参数 PageTransformer 是关键

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

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

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

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

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

上一篇:逆向-攻防世界-maze


下一篇:STL --> 高效使用STL