我有一个数字选择器:
AlertDialog alertDialog = builder.create();
alertDialog.setTitle("Quantidade");
NumberPicker NP = (NumberPicker)view.findViewById(R.id.npicker);
NP.setMaxValue(1000);
NP.setMinValue(1);
alertDialog.setButton(...);
alertDialog.show();
这在 Android 4.0.x 上运行良好,但在 Android 2.3.x 上我得到
java.lang.NoSuchMethodError: android.widget.NumberPicker.setMaxValue
如果我删除NP.setMaxValue(1000)
and NP.setMinValue(1)
,它可以工作,但限制设置为 0,有没有办法在 Android 2.3.x 上设置数字选择器限制?