Most visited

Recently visited

ViewPager.PageTransformer

public static interface ViewPager.PageTransformer

android.support.v4.view.ViewPager.PageTransformer


每当可见/附加页面滚动时,都会调用PageTransformer。 这为应用程序提供了使用动画属性将自定义转换应用于页面视图的机会。

由于属性动画仅支持Android 3.0及以前版本,因此在早期平台版本上的ViewPager上设置PageTransformer将被忽略。

Summary

Public methods

abstract void transformPage(View page, float position)

将属性转换应用于给定页面。

Public methods

transformPage

void transformPage (View page, 
                float position)

将属性转换应用于给定页面。

Parameters
page View: Apply the transformation to this page
position float: 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.

Hooray!