Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Textsize is different after convert number month to date format #52

Open
PGAndroid opened this issue Oct 13, 2017 · 1 comment
Open

Comments

@PGAndroid
Copy link

PGAndroid commented Oct 13, 2017

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.

screenshot_2017-10-13-13-39-27

@brucetoo
Copy link
Owner

"November" string has different measure height compare with "11.2013" string

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants