public class DpUtils { /** * 根据手机的分辨率从 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); } }
DpUtils
最新推荐文章于 2022-06-02 21:30:00 发布
本文介绍了一个实用的工具类DpUtils,该类提供了两个核心方法:dip2px用于将dp单位转换为像素单位(px),而px2dip则实现相反的转换。这两个方法在Android开发中十分常见,有助于适配不同分辨率的设备。
摘要由CSDN通过智能技术生成