A light PickerView for Android.
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. } });