码迷,mamicode.com
首页 > 其他好文 > 详细

dp 与px互相转换

时间:2014-09-09 16:14:19      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   ar   sp   on   c   line   ad   

/** 
     * 根据手机的分辨率从 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);  
    }

dp 与px互相转换

标签:style   color   os   ar   sp   on   c   line   ad   

原文地址:http://blog.csdn.net/tw19811220/article/details/39155571

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!