Convert pixels to sp

前端 未结 3 1308
野趣味
野趣味 2020-11-27 15:18

I need the current TextSize of the TextView in sp units.

But getTextSize() returns the size in pixels

3条回答
  •  -上瘾入骨i
    2020-11-27 15:50

    weird to see public field that is adjusted at run time but it works. Standard Dpi is 160 so whatever your device Dpi is, say 240, both density and scaledDensity will show 240/160=1.5 This is how you convert between pixels and sp: px=1.5*sp

提交回复
热议问题