在NumberPicker中滚动低于最小值

时间:2014-08-24 11:35:36

标签: android numberpicker

我的NumberPicker定义如下:

<NumberPicker
 android:id="@+id/np"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:layout_centerHorizontal="true"
 android:gravity="center" />

final NumberPicker np = (NumberPicker) findViewById(R.id.np);
    np.setMinValue(1);
    np.setMaxValue(Integer.MAX_VALUE);
    np.setValue(3);

我希望用户能够选择任何整数(没有最大界限):

enter image description here

当向上滚动超过1(意味着低于最小值)时,我达到了最大值,但不能再回头了:

enter image description here

所以我面临两个问题:

首先,我希望能够向下滚动。 其次,如果我不能首先滚动到1以上,那将是最好的。如果任何用户达到最大值并且无法向下滚动,那就没问题了。

0 个答案:

没有答案