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

dip 和 px 互转

时间:2016-05-16 19:59:35      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

package com.itheima62.smartbj.utils;

import android.content.Context;

/**
 * @author Administrator
 * @创建时间 2015-7-4 下午2:55:47
 * @描述 TODO
 *
 * @ svn提交者:$Author: gd $
 * @ 提交时间: $Date: 2015-07-04 14:57:46 +0800 (Sat, 04 Jul 2015) $
 * @ 当前版本: $Rev: 9 $
 */
public class DensityUtil
{
     /** 
     * 根据手机的分辨率从 dip 的单位 转成为 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);  
    }  
}

 

dip 和 px 互转

标签:

原文地址:http://www.cnblogs.com/znyyjk/p/5499012.html

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