Android支持以下度量单位:px,in,mm,pt,dp,dip,sp,以下是它们的具体说明:
You can create common dimensions to use for various screen elements by defining dimension values in XML. A dimension resource is a number followed by a unit of measurement . For example: 10px, 2in, 5sp. Here are the units of measurement supported by Android :

引用 px(像素):屏幕上的点。
px –> Pixels – corresponds to actual pixels on the screen .
引用 in(英寸):长度单位。
in –> Inches – based on the physical size of the screen .
引用 mm(毫米):长度单位。
mm –> Millimeters – based on the physical size of the screen .
引用 pt(磅):1/72英寸。
pt –> Points – 1/72 of an inch based on the physical size of the screen .
引用 dp(与密度无关的像素):一种基于屏幕密度的抽象单位。在每英寸160点的显示器上,1dp = 1px。
dp –> Density-independent Pixels – an abstract unit that is based on the physical density of the screen. These units are relative to a 160 dpi screen, so one dp is one pixel on a 160 dpi screen. The ratio of dp-to-pixel will change with the screen density, but not necessarily in direct proportion .Note: The compiler accepts both “dip” and “dp”, though “dp” is more consistent with “sp”.
dip(设备独立像素):与dp相同,不同设备有不同显示效果,多用于android/ophone示例中。

引用 sp(与刻度无关的像素):与dp类似,但是可以根据用户的字体大小首选项进行缩放。
sp –> Scale-independent Pixels – this is like the dp unit, but it is also scaled by the user’s font size preference. It is recommend you use this unit when specifying font sizes, so they will be adjusted for both the screen density and user’s preference

更多相关文章

  1. Android(安卓)Bitmap 缩放 旋转 水印 裁剪操作
  2. Android(安卓)Context 详解
  3. android 天气预报
  4. androidTV 9.0 开发调用系统jar异常报错,jar引用已导入还是报错,分
  5. Android(安卓)Studio/Gradle/重复依赖
  6. android 手势
  7. Android(安卓)密度转换 java文件
  8. [置顶] android 内存泄露那些事情之Handler(一)
  9. WeakReference 在android中的应用

随机推荐

  1. Android 响应键盘移动图标
  2. Android侧滑菜单
  3. 伪静态 排查某个目录 设置301排查图片的
  4. Android 解决 RecyclerView 嵌套 ScrollV
  5. 引入layoutlib.jar
  6. android alertdialog 弹出框
  7. 闹铃设置
  8. PduHeader
  9. Android's 2D Canvas Rendering Pipeline
  10. android thread Interrupte使用方法