You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in NumberPickerView line 723, setMinValue(int minValue) method
public void setMinValue(int minValue){
mMinValue = minValue;
mMinShowIndex = 0;
updateNotWrapYLimit();
}
I think it should be like this:
public void setMinValue(int minValue){
mMinValue = minValue;
mMinShowIndex = minValue;
updateNotWrapYLimit();
}
and it worked well.
in demo ActivityTimePicker
line 65:
replace
setData(mPickerViewH, 0, 11, h);
with
setData(mPickerViewH, 3, 4, 4);
hour picker show 1 and 12
NOT 3 and 4
I think it's a bug.
if setMinValue is not 0, number picker view will not work.
The text was updated successfully, but these errors were encountered: