您的位置:首页 > 移动开发 > Android开发

dp与px之间的关系转换方法

2015-07-22 15:23 471 查看
dp与px之间如何转换,可以借助如下工具类:

public class DensityUtils{
/*
根据手机的分辨率从 dp 单位转为 px(像素)
*/
public static int dip2px(Context context,float dpValue){
final float scale = context.getResource().getDisplayMetrics().density;
return (int)(dpValue * scale + 0.5f);
}

/*
根据手机的分辨率从 dp 单位转为 px(像素)
*/
public static int dip2px(Context context,float pxValue){
final float scale = context.getResource().getDisplayMetrics().density;
return (int)(pxValue / scale + 0.5f);
}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android