Back to project page WheelView.
The source code is released under:
Apache License
If you think the Android project WheelView listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.lukedeighton.wheelview.transformer; /* w w w. j a v a 2s. co m*/ import android.graphics.Rect; import com.lukedeighton.wheelview.WheelView; public interface WheelItemTransformer { /** * You have control over the Items draw bounds. By supplying your own WheelItemTransformer * you must call set bounds on the itemBounds. */ void transform(WheelView.ItemState itemState, Rect itemBounds); }