安卓dp转px,px转dp方法

dp转px:

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

px转dp:

    /**
     * 根据手机的分辨率从 px(像素) 的单位 转成为 dp
     */
    public static int px2dip(Context context, float pxValue) {
        final float scale = context.getResources().getDisplayMetrics().density;
        return (int) (pxValue / scale + 0.5f);
    }
转自:https://blog.csdn.net/Keep_Driving_XinYang/article/details/50498628

猜你喜欢

转载自blog.csdn.net/yonghuming_jesse/article/details/80595870