代码如下:import android.content.Context;public class DensityUtil { private static float scale; /**
* 根据手机的分辨率从 dp 的单位 转成为 px(像素)
*/
public static int dip2px(Context context, float dpVal...
分类:
移动开发 时间:
2015-06-04 15:44:30
阅读次数:
148
常用单位转换的辅助类:1、dp 转 px;2、sp 转 px;3、px 转 dp;4、px 转 sp。 1 import android.content.Context; 2 import android.util.TypedValue; 3 4 // 常用单位转换的辅助类 5 public cl....
分类:
移动开发 时间:
2015-05-28 13:57:05
阅读次数:
153