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
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,
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.
The text was updated successfully, but these errors were encountered: