部分源码: /** * Set the default text size to a given unit and value. See {@link * TypedValue} for the possible dimension units. * * @p...
分类:
编程语言 时间:
2014-08-13 00:45:04
阅读次数:
338
android让人头疼的适配问题。
---------
Android 中的单位大概有这些:
常用的dip、sp,有时候用到px。
---------
介绍两个类:
TypedValue:有一些单位转换相关的方法。
DisplayMetrics:
DisplayMetrics dm = new DisplayMetrics();
getWindowM...
分类:
移动开发 时间:
2014-08-04 21:47:18
阅读次数:
268
可以指定单位:
setTextSize(int unit, int size)
TypedValue.COMPLEX_UNIT_PX : Pixels
TypedValue.COMPLEX_UNIT_SP : Scaled Pixels
TypedValue.COMPLEX_UNIT_DIP : Device Independent Pixels
mText.setTextSize(...
分类:
移动开发 时间:
2014-04-29 13:22:20
阅读次数:
345