dp与px之间的转换(android屏幕适配)

public class DensityUtil {  
 
    /**
     * 根据手机的分辨率从 dip 的单位 转成为 px(像素)
     */  
    public static intqx(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);  
    }  




你可能感兴趣的:(dp与px之间的转换(android屏幕适配))