So I got this font that must be used at a size of 9 pt in my app. This is what my designer, an Android illiterate, is telling me. No problem:
9 pt = (1 / 72) * 9 = 1 / 8 in.
@ 285 dpi, this means 9 pt = 285/8 px
Being xhdpi, 9 pt = 285 / 16 dp.
Neat! Now how do I convert this value to sp so I can feed it to the method from the title ?
Thanks