Android development, in the code, set the font size unit

setTextSize(TypedValue.COMPLEX_UNIT_PX,10); //means 22 pixels
setTextSize(TypedValue.COMPLEX_UNIT_SP,10); //means 22SP
setTextSize(TypedValue.COMPLEX_UNIT_DIP,10);//means 22dp

Guess you like

Origin blog.csdn.net/qq_41915623/article/details/102782562