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