tylerbwong / stack

An Android app for browsing Stack Overflow and other Stack Exchange sites.
https://stack.tylerbwong.me
GNU General Public License v3.0
515 stars 35 forks source link

Fix BadgeView Count Font Alignment #29

Closed tylerbwong closed 5 years ago

tylerbwong commented 5 years ago

In order to make sure the badge counts were center aligned with their badges we need to use fontMetrics.bottom instead of fontMetrics.descent for an accurate y-position when drawing the label. Using fontMetrics.bottom for this calculation is safe since number characters never get drawn below the baseline.

Also removed an unused dimen and fixed a lambda name shadow.