像素 转换 px dp
Posted zhaozilongcjiajia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了像素 转换 px dp相关的知识,希望对你有一定的参考价值。
public static int dip2px(Context context, float dpValue){
final float scale = context.getResources().getDisplayMetrics().density;
return (int)(dpValue * scale + 0.5f);
}
public static int px2dip(Context context, float pxValue){
final float scale = context.getResources().getDisplayMetrics().density;
return (int)(pxValue / scale + 0.5f);
}
以上是关于像素 转换 px dp的主要内容,如果未能解决你的问题,请参考以下文章
android开发之dip,dp与px像素之间的转换工具,可能用的不多,但是有总比没有好吧。