dip2px

Posted 达哥的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dip2px相关的知识,希望对你有一定的参考价值。

package com.itheima.zhbj.utils;

import android.content.Context;

public class DensityUtils {

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);
}

}

以上是关于dip2px的主要内容,如果未能解决你的问题,请参考以下文章

android 动态设置布局宽度

谷歌电子市场6--排行