Number picker
np = (NumberPicker) findViewById(R.id.numberPicker1);
np.setMaxValue(200);
np.setMinValue(1);
Button b = (Button) findViewById(R.id.button1);
when I scroll numbers should go 1 2 3 ... etc ..
what I want is when scrolling its should go 5 10 15 etc
how to do it ?