我的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);
我希望用户能够选择任何整数(没有最大界限):
当向上滚动超过1(意味着低于最小值)时,我达到了最大值,但不能再回头了:
所以我面临两个问题:
首先,我希望能够向下滚动。 其次,如果我不能首先滚动到1以上,那将是最好的。如果任何用户达到最大值并且无法向下滚动,那就没问题了。