AlmostMaterialDatepicker icon indicating copy to clipboard operation
AlmostMaterialDatepicker copied to clipboard

Locale issue

Open haizo-code opened this issue 6 years ago • 1 comments

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

haizo-code avatar Oct 02 '18 08:10 haizo-code

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));

haizo-code avatar Oct 02 '18 09:10 haizo-code