shagiz / AlmostMaterialDatepicker

Date picker made in material design style with some additional spinners
76 stars 23 forks source link

Locale issue #7

Open haizo-code opened 6 years ago

haizo-code commented 6 years ago

Number in locale("ar") does not appear correctly, the numbers appears as mix of (Arabic and English)

haizo-code commented 6 years ago

I fixed it, in the YearPickerView.java when you set the text, use this instead: String numberAsString = String.format(Locale.getDefault(), "%d", year); v.setText(String.valueOf(numberAsString));