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

dp,px转换

时间:2014-10-31 19:05:52      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:sp   on   bs   ef   new   res   window   text   nbsp   

 public static int dip2px(Context context, float dpValue) {
        final float scale = context.getResources().getDisplayMetrics().density;
        return (int) (dpValue * scale + 0.5f);
    }
    
    public static int px2dip(Context context, float pxValue) {
        final float scale = context.getResources().getDisplayMetrics().density;
        return (int) (pxValue / scale + 0.5f);
    }

 

 

 WindowManager wm = (WindowManager) this.getSystemService(Context.WINDOW_SERVICE);
        DisplayMetrics dm = new DisplayMetrics();
        wm.getDefaultDisplay().getMetrics(dm);
        float hh = (float)dm.heightPixels/3;
        float ww = (float)dm.widthPixels/3;

dp,px转换

标签:sp   on   bs   ef   new   res   window   text   nbsp   

原文地址:http://www.cnblogs.com/xgjblog/p/4065715.html

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