1、Android中单位介绍
根据官网介绍(https://developer.android.com/guide/topics/resources/more-resources.html#Dimension),Android中可用单位有:
dp(Density-independent-Pixels);
An abstract unit that is based on the physical density of the screen.
基于物理屏幕密度的抽象单位。
sp(Scale-independent-Pixels);
This is like the dp unit, but it is also scaled by the user's font size preference.
和dp一样,但是还根据用户选择的字体大小选项缩放。
pt(Points);
1/72 of an inch based on the physical size of the screen, assuming a 72dpi density screen.
表示在屏幕上的1/72英寸,也是72屏幕密度。
(dpi:dots per inch)
px(Pixels);
Corresponds to the actual pixels on the screen.
in(Inches);
英寸
mm(MiliMeters);
毫米
2、Android中常用
Android中表示长度、宽度常用dp,字体大小常用sp。
因为这两个不是实际单位,会随着屏幕密度变化而变化,所以对于不同屏幕的适配很方便。
3、dp、sp、pt转换
px = (density/160)dp.
在160dpi下,1dp几乎等于1px,随着屏幕密度的变化,dp与sp的比例也随之缩放。
在160dpi下,
1dp = 1px;
1sp = 1px;
1pt = 72dpi;
1pt = 2.22sp. 【1in有160px(dp/sp),1pt = 1/72in(72dpi) ——> 1pt = 2.22sp】
网友评论