温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

怎么在android中将px和dp进行转换

发布时间:2021-05-19 15:39:39 来源:亿速云 阅读:708 作者:Leah 栏目:移动开发

这篇文章给大家介绍怎么在android中将px和dp进行转换,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

在Android开发中dp和px,sp和px之间的转换时必不可少的,网上流传的方法

public class DisplayUtils {   /**    * convert px to its equivalent dp    * 将px转换为与之相等的dp    */   public static int px2dp(Context context, float pxValue) {     final float scale = context.getResources().getDisplayMetrics().density;     return (int) (pxValue / scale + 0.5f);   }   /**    * convert dp to its equivalent px    * 将dp转换为与之相等的px    */   public static int dp2px(Context context, float dipValue) {     final float scale = context.getResources().getDisplayMetrics().density;     return (int) (dipValue * scale + 0.5f);   }   /**    * convert px to its equivalent sp     * 将px转换为sp    */   public static int px2sp(Context context, float pxValue) {     final float fontScale = context.getResources().getDisplayMetrics().scaledDensity;     return (int) (pxValue / fontScale + 0.5f);   }   /**    * convert sp to its equivalent px    * 将sp转换为px    */   public static int sp2px(Context context, float spValue) {     final float fontScale = context.getResources().getDisplayMetrics().scaledDensity;     return (int) (spValue * fontScale + 0.5f);   } }

关于转换公式中,通过类比一元一次函数,怎么看都是有问题的,这么明显的问题,为什么没人纠正,后来发现是自己并没有理解,原因是float类型在强转为int类型是,用的是去尾法,精度上有较大差异,所以通过+0.5f的方式,将去尾法转变成四舍五入法,提高精度。

调用TypedValue类实现转换

/** * convert dp to its equivalent px */ protected int dp2px(int dp){     return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp,getResources().getDisplayMetrics()); } /** * convert sp to its equivalent px */ protected int sp2px(int sp){     return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, sp,getResources().getDisplayMetrics()); } public class TypedValue {   ...   /** {@link #TYPE_DIMENSION} complex unit: Value is raw pixels. */   public static final int COMPLEX_UNIT_PX = 0;   /** {@link #TYPE_DIMENSION} complex unit: Value is Device Independent    * Pixels. */   public static final int COMPLEX_UNIT_DIP = 1;   /** {@link #TYPE_DIMENSION} complex unit: Value is a scaled pixel. */   public static final int COMPLEX_UNIT_SP = 2;   /** {@link #TYPE_DIMENSION} complex unit: Value is in points. */   public static final int COMPLEX_UNIT_PT = 3;   /** {@link #TYPE_DIMENSION} complex unit: Value is in inches. */   public static final int COMPLEX_UNIT_IN = 4;   /** {@link #TYPE_DIMENSION} complex unit: Value is in millimeters. */   public static final int COMPLEX_UNIT_MM = 5;   /**    * Converts an unpacked complex data value holding a dimension to its final floating     * point value. The two parameters <var>unit</var> and <var>value</var>    * are as in {@link #TYPE_DIMENSION}.    *     * @param unit The unit to convert from.    * @param value The value to apply the unit to.    * @param metrics Current display metrics to use in the conversion --     *        supplies display density and scaling information.    *     * @return The complex floating point value multiplied by the appropriate     * metrics depending on its unit.     */   public static float applyDimension(int unit, float value,                     DisplayMetrics metrics)   {     switch (unit) {     case COMPLEX_UNIT_PX:       return value;     case COMPLEX_UNIT_DIP:       return value * metrics.density;     case COMPLEX_UNIT_SP:       return value * metrics.scaledDensity;     case COMPLEX_UNIT_PT:       return value * metrics.xdpi * (1.0f/72);     case COMPLEX_UNIT_IN:       return value * metrics.xdpi;     case COMPLEX_UNIT_MM:       return value * metrics.xdpi * (1.0f/25.4f);     }     return 0;   }   ... }

Android是什么

Android是一种基于Linux内核的自由及开放源代码的操作系统,主要使用于移动设备,如智能手机和平板电脑,由美国Google公司和开放手机联盟领导及开发。

关于怎么在android中将px和dp进行转换就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI