/EasyPickerView

A light Wheel Picker View for Android.

Primary LanguageJavaApache License 2.0Apache-2.0

EasyPickerView

A light PickerView for Android.

ScreenShots

picker scale

Usage

layout

    <com.hzn.easypickerview.EasyPickerView
        android:id="@+id/cpv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingLeft="15dp"
        android:paddingRight="15dp"
        custom:epvRecycleMode="true"
        custom:epvTextColor="#4aa4a4"
        custom:epvTextMaxScale="2.0"
        custom:epvTextMinAlpha="0.35"
        custom:epvTextPadding="10dp"
        custom:epvTextSize="30sp"/>

Activity

    cpv.setDataList(dataList);
    cpv.setOnScrollChangedListener(new EasyPickerView.OnScrollChangedListener() {
        @Override
        public void onScrollChanged(int curIndex) {
            // your codes.
        }

        @Override
        public void onScrollFinished(int curIndex) {
            // your codes.
        }
    });