samson 20160225
当我们在资源文件里设置尺寸的时候多是用dp,那么Android的开发并不局限于我们所用的资源文件,有时候我们需要动态的管理视图的尺寸,view给我们提供了setPadding(left, top, right, bottom);但是此时的 int并不是dp,而是px,由自己来转换;下面给出转换的函数。
/**
*
* @author samson
* @date:20160225
*/
public class ScrUtils {
/**
* dp2px
*/
public static int dip2px(Context context, float dpValue) {
final float scale = context.getResources().getDisplayMetrics().density;
return (int) (dpValue * scale + 0.5f);
}
/**
* px2dp
*/
public static int px2dip(Context context, float pxValue) {
final float scale = context.getResources().getDisplayMetrics().density;
return (int) (pxValue / scale + 0.5f);
}
/**
* 根据设备信息获取当前分辨率下指定单位对应的像素大小; px,dip,sp -> px
*/
public float getRawSize(Context c, int unit, float size) {
Resources r;
if (c == null) {
r = Resources.getSystem();
} else {
r = c.getResources();
}
return TypedValue.applyDimension(unit, size, r.getDisplayMetrics());
}
}