Bigkoo / Android-PickerView

This is a picker view for android , support linkage effect, timepicker and optionspicker.(时间选择器、省市区三级联动)
Apache License 2.0
13.45k stars 3.45k forks source link

Month shown 03 instead of 3 #235

Closed kainjinez closed 7 years ago

kainjinez commented 7 years ago

Hello again, I want TimePickerView show 3 instead of 03 in month. How to do that? Day of month too. Thanks

xiaosong520 commented 7 years ago

@kainjinez In the getContentText method of the WheelView class return String.format(Locale.getDefault(), "%02d", (int) item); change to return item.toString();