Number picker restricting other Number Picker

400 Views Asked by At

I have 2 number pickers, one for hours and another for minutes. I want the availible options to range from 1 hour and 30 mins to 5 hours and 58 mins. One number picker is for the hours and another for the minutes

When the Hours numnerpicker is 1 I would like to restrict the other number picker to values between 30 and 58 (in increments of 2). What I have tried so far doesnt work and the minutes numberpicker just goes to zero and doesnt move.

// Create the array of numbers that will populate the numberpicker
    final String[] hours = {"1","2","3","4","5"};
    final String[] mins = new String[30];

    for(int i=0; i < 30; i++) {
        mins[i] = Integer.toString(i*2);
    }



    //set up number picker
    final NumberPicker nmHours = (NumberPicker) view.findViewById(R.id.hours);
    nmHours.setMaxValue(5);
    nmHours.setMinValue(1);
    nmHours.setWrapSelectorWheel(true);
    nmHours.setDisplayedValues(hours);
    //This gets the value stored in my global singleton 
    nmHours.setValue(Integer.parseInt(MethodLab.get(getActivity()).getSetup().getPealTime().substring(0,1)));
    nmHours.setDescendantFocusability(NumberPicker.FOCUS_BLOCK_DESCENDANTS);

    final NumberPicker nmMins = (NumberPicker) view.findViewById(R.id.minutes);
    nmMins.setMaxValue(30);
    nmMins.setMinValue(1);
    nmMins.setWrapSelectorWheel(true);
    nmMins.setDisplayedValues(mins);
    //This gets the value stored in my global singleton 
    nmMins.setValue(Integer.parseInt(MethodLab.get(getActivity()).getSetup().getPealTime().substring(2,MethodLab.get(getActivity()).getSetup().getPealTime().length())));
    nmMins.setDescendantFocusability(NumberPicker.FOCUS_BLOCK_DESCENDANTS);
    nmMins.setOnValueChangedListener(new NumberPicker.OnValueChangeListener() {

        @Override
        public void onValueChange(NumberPicker picker, int oldVal, int newVal) {
            // TODO Auto-generated method stub

            // TODO Auto-generated method stub
            if (nmHours.getValue() == 1){
                nmMins.setDisplayedValues(Arrays.copyOfRange(mins, 15, 30));
                nmMins.setMaxValue(30);
                nmMins.setMaxValue(15);
                nmMins.setValue(30);
            }
            else{
                nmMins.setDisplayedValues(mins);
                nmMins.setMaxValue(30);
                nmMins.setMinValue(1);
            }   
        }
    });
0

There are 0 best solutions below