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

dip2px

时间:2016-06-27 21:43:33      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

package com.itheima.zhbj.utils;

import android.content.Context;

public class DensityUtils {

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);
}

}

dip2px

标签:

原文地址:http://www.cnblogs.com/johnsonwei/p/5621323.html

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