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.adapter; import android.graphics.drawable.Drawable; public interface WheelAdapter { Drawable getDrawable(int position); int getCount(); }