Android开发之dp转像素,像素转换为dp工具类,详细代码,带有源文件下载地址。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android开发之dp转像素,像素转换为dp工具类,详细代码,带有源文件下载地址。相关的知识,希望对你有一定的参考价值。


import android.content.Context;
/**
* @author 官网
*
* David编写: 微博:http://weibo.com/93sec.cc
*
* @version V1.0正式版
*
* @process
*
* @Note weibo.com/mcxiaobing
*
* @dateTime 2015-10-18下午1:46:20
*
*/
public class DensityUtil
/**
* dip转像素
*/
public static int dip2px(Context context, float dpValue)
final float scale = context.getResources().getDisplayMetrics().density;
return (int) (dpValue * scale + 0.5f);


/**
* 像素转dip
*/
public static int px2dip(Context context, float pxValue)
final float scale = context.getResources().getDisplayMetrics().density;
return (int) (pxValue / scale + 0.5f);


以上是关于Android开发之dp转像素,像素转换为dp工具类,详细代码,带有源文件下载地址。的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Android Jetpack Compose 中将 Dp 转换为像素?

Java&Android像素pxdip转换工具类

如何将dp转换为像素,并使用它在android中绘制到画布

dp和px

将像素转换为 dp

将像素转换为 dp