Android NumberPicker OnValueChangeListener
问题 I have a question concerning the Android NumberPicker . When the user is performing a Fling on a NumberPicker , for every single step the Listener for OnValueChange is triggered. Can I change this in that way, that the oldVal and the newVal can possibly differ by more than 1 from each other and the Listener is only triggered once? Thanks in advance. EDIT: I will try to explain it more specific in my code. int diff = Math.abs(newVal - oldVal); if (newVal - oldVal > 0) { sendMessage(te); for