anroid dip 转 px 方法

来源:互联网 发布:左旋肉碱 知乎 编辑:程序博客网 时间:2024/05/18 00:50
/** * 根据手机的分辨率从 dip 的单位 转成为 px(像素) */public static int dip2px(Context context, float dpValue) {final float scale = context.getResources().getDisplayMetrics().density;return (int) (dpValue * scale + 0.5f);}

原创粉丝点击