13

是否有可能以比在 OnScrollListener 事件中处理更方便的方式做到这一点?可惜它没有步长属性...

4

6 回答 6

32

Android 中的 NumberPicker 有一个名为setDisplayedValues的方法。您可以使用它来显示自定义值(它需要一个字符串数组),然后在需要值时映射它们。因此,如果您在一分钟选择器中需要 5 步,例如,您可以创建一个这样的数组:

String[] minuteValues = new String[12];

for (int i = 0; i < minuteValues.length; i++) {
    String number = Integer.toString(i*5);
    minuteValues[i] = number.length() < 2 ? "0" + number : number;
}

minutePicker.setDisplayedValues(minuteValues);

然后,当您获得 中的值时OnValueChangeListener,只需将其转换回整数:

Integer.parseInt(minuteValues[newVal]);
于 2012-11-20T14:19:07.427 回答
16

例如,要将步数设置为“5”,请使用NumberPicker.Formatter

    NumberPicker.Formatter formatter = new NumberPicker.Formatter() {
        @Override
        public String format(int value) {
            int temp = value * 5;
            return "" + temp;
        }
    };
    numberPicker.setFormatter(formatter);
于 2015-05-26T22:12:30.210 回答
7

为什么不只是添加一个OnValueChangeListener类似的东西:

numberPicker.setOnValueChangedListener(new NumberPicker.OnValueChangeListener() {

     @Override
     public void onValueChange(NumberPicker picker, int oldVal, int newVal) {
         picker.setValue((newVal < oldVal)?oldVal-5:oldVal+5);
     }

});
于 2012-10-19T18:54:47.867 回答
7

Android 中的 NumberPicker 有一个名为setDisplayedValues的方法。您可以使用它来显示自定义值(它需要一个字符串数组),然后在需要值时映射它们。

例如,您可以创建这样的函数:

public String[] getArrayWithSteps (int iMinValue, int iMaxValue, int iStep)
{ 
   int iStepsArray = (iMaxValue-iMinValue) / iStep+1; //get the lenght array that will return

   String[] arrayValues= new String[iStepsArray]; //Create array with length of iStepsArray 

   for(int i = 0; i < iStepsArray; i++)
   {
     arrayValues[i] = String.valueOf(iMinValue + (i * iStep));
   }

   return arrayValues;
}

因此,您应该调用方法> NumberPicker.setDisplayedValues,例如:

int min = 5;
int max = 180;
int step = 10;

String[] myValues = getArrayWithSteps(min, max, step); //get the values with steps... Normally 

//Setting the NumberPick (myNumberPick)
myNumberPick.setMinValue(0);
myNumberPick.setMaxValue((max-step) / min + 1); //Like iStepsArray in the function
//Because the Min and Max Value should be the range that will show. 
//For example, Min = 0 and Max = 2, so the NumberPick will display the first three strings in the array String (myValues); 
myNumberPick.setDisplayedValues(myValues);//put on NumberPicker 

要获取 NumberPick 中的值:

String sValue = String.valueOf(10+(myNumberPick.getValue()*5)); //->> (iMinValue + (myNumberPick.getValue()*iStep))
于 2014-05-23T17:50:57.380 回答
1

这是 ajpolt 解决方案的更好方法

使用任何预定义的步长,它支持通过键盘设置自定义值。

 final NumberPicker np = (NumberPicker) dialogView.findViewById(R.id.numberPicker1);
    np.setMaxValue(1000); // max value 1000
    np.setMinValue(0);   // min value 0
    np.setValue(defValue);
    np.setWrapSelectorWheel(false);
    final int m_oldFocus = np.getDescendantFocusability();
    np.setDescendantFocusability(NumberPicker.FOCUS_BLOCK_DESCENDANTS);
    np.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View view, MotionEvent motionEvent) {
            np.setDescendantFocusability(m_oldFocus);
            return false;
        }
    });

    np.setOnValueChangedListener(new NumberPicker.OnValueChangeListener() {
        @Override
        public void onValueChange(NumberPicker numberPicker, int oldVal, int newVal) {
            int stepSize = 10;
            if(newVal%stepSize !=0){
                if(newVal < oldVal){
                    numberPicker.setValue(((int)(newVal/stepSize)) *stepSize);
                }else{
                    numberPicker.setValue((((int)(newVal/stepSize)) *stepSize ) +stepSize );
                }

            }else{
                numberPicker.setValue(newVal);
            }

        }
    });

*我知道这是 5 岁的问题,但可能对某人有用

于 2018-05-23T07:36:08.540 回答
1

使用上述方法时,需要注意的是,选择器不仅允许用户通过滚动选择值,还可以通过键盘输入。

默认情况下,输入字段的输入类型设置为TYPE_CLASS_NUMBER,因此用户会看到数字键盘。似乎当您使用setDisplayedValues选择器时将类型更改为TYPE_CLASS_TEXT,但是,当您使用setFormatter输入类型时不会更改。

因此,在这种情况下使用格式化程序可能会导致意外行为。假设您希望用户只能选择值“0”或“5”。你可能有这样的代码:

NumberPicker numberPicker = (NumberPicker) findViewById(R.id.my_number_picker);
numberPicker.setMinValue(0);
numberPicker.setMaxValue(1);
numberPicker.setFormatter(v -> v == 0 ? "0" : "5");

然而,在这种情况下,用户会看到数字键盘,但只能输入“0”或“1”。

如果您改用:

numberPicker.setDisplayedValues(new String[] { "0", "5" });

用户将看到文本键盘,但可以按预期输入“0”或“5”。

如果您对文本键盘感到困扰,您可以使用反射来访问私有字段并将输入类型设置回数字(除非确实必要,否则当然不推荐)。如果您以 Gingerbread 等老歌为目标,则该字段称为“mInputText”或“mText”。

    try {
        Field inputField = NumberPicker.class.getDeclaredField("mInputText");
        inputField.setAccessible(true);

        EditText inputText = (EditText) inputField.get(numberPicker);
        inputText.setRawInputType(InputType.TYPE_CLASS_NUMBER);
    } catch (ClassCastException e) {
        // Just ignore this exception and do nothing.
    } catch (IllegalAccessException e) {
        // Just ignore this exception and do nothing.
    } catch (NoSuchFieldException e) {
        // Just ignore this exception and do nothing.
    }
于 2017-02-13T09:41:14.993 回答