dp px互转

来源:互联网 发布:大数据平台性能指标 编辑:程序博客网 时间:2024/05/21 09:27
package com.example.testucfbpop;import android.content.Context;public class UnitTransformUtil {        /** * 根据手机的分辨率从 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 */        public static int px2dip(Context context, float pxValue) {                final float scale = context.getResources().getDisplayMetrics().density;                return (int) (pxValue / scale + 0.5f);        }}

原创粉丝点击