1

如何更改 numberPicker 的速度?我的号码选择器:

  <NumberPicker android:id="@+id/numberpicker"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="20dp"
                    android:layout_marginRight="140dp"
                    />
4

1 回答 1

2

默认值为 300 毫秒。数字递增和递减的速度(以毫秒为单位)。

public static final long SPEED_UPDATE_PICKER = 500;
mPicker.setOnLongPressUpdateInterval(SPEED_UPDATE_PICKER );
于 2016-11-01T15:18:34.063 回答