Textsize is different after convert number month to date format
PGAndroid opened this issue · 1 comments
PGAndroid commented
I have converted number month to date format (with MMMM). But after that it is showing wired textsize for month and also separator line doesn't match with other day and year view,
// converting MM to MMMM
public String formatMonth(String month) { String formated_month = ""; SimpleDateFormat monthParse = new SimpleDateFormat("MM"); SimpleDateFormat monthDisplay = new SimpleDateFormat("MMMM"); try { formated_month = monthDisplay.format(monthParse.parse(month)); } catch (ParseException e) { e.printStackTrace(); } return formated_month; }
Also i want to apply custom font to all.
brucetoo commented
"November" string has different measure height compare with "11.2013" string