美文网首页
1.Android中dp和px之间进行转换的应用类

1.Android中dp和px之间进行转换的应用类

作者: 张丶小白 | 来源:发表于2016-11-19 15:59 被阅读0次

[本文转载自http://blog.csdn.net/arui319/article/details/6777133]

public class DensityUtil {

/**

* 根据手机的分辨率从 dp 的单位 转成为 px(像素)

*/

public static int dip2px(Context context, float dpValue) {

final float scale = context.getResources().getDisplayMetrics().density;

return (int) (dpValue * scale + 0.5f);

}

/**

* 根据手机的分辨率从 px(像素) 的单位 转成为 dp

*/

public static int px2dip(Context context, float pxValue) {

final float scale = context.getResources().getDisplayMetrics().density;

return (int) (pxValue / scale + 0.5f);

}

}

相关文章

网友评论

      本文标题:1.Android中dp和px之间进行转换的应用类

      本文链接:https://www.haomeiwen.com/subject/ithepttx.html