自定义view实现转盘选择效果:WheelView
jopen
10年前
WheelView 是一个Android 库,实现转盘选择效果。该WheelView可以用来作为一种方法来从列表中选择一个项目。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent"> <com.lukedeighton.wheelview.WheelView android:id="@+id/wheelview" android:layout_width="match_parent" android:layout_height="match_parent" app:wheelColor="@color/grey_400" app:rotatableWheelDrawable="false" app:selectionAngle="90.0" app:wheelPosition="bottom" app:wheelOffsetY="60dp" app:repeatItems="true" app:wheelRadius="276dp" app:wheelItemCount="14" app:wheelPadding="13dp" app:wheelItemRadius="43dp"/> </RelativeLayout>