我正在尝试将dp转换为像素。我正在使用这种方法:
//Converts device pixels to regular pixels to draw
private float dpToPixel(float dp) {
DisplayMetrics metrics = this.getResources().getDisplayMetrics();
float px = dp * (metrics.densityDpi/160f);
return px;
}
然后我尝试从我的dimen.xml文件中的变量中获取dp,如下所示:
int buttonWidth = (int) dpToPixel(R.dimen.buttonHeight);
然后我创建一个带有buttonWidth
变量宽度的缩放位图。
最后我把它画到画布上。但是当我尝试运行它时,没有显示任何内容。有人可以帮忙吗?
答案 0 :(得分:5)
public class DensityUtil {
/**
* dip to px
*/
public static int dip2px(Context context, float dpValue) {
final float scale = context.getResources().getDisplayMetrics().density;
return (int) (dpValue * scale + 0.5f);
}
/**
* px to dp
*/
public static int px2dip(Context context, float pxValue) {
final float scale = context.getResources().getDisplayMetrics().density;
return (int) (pxValue / scale + 0.5f);
}
}
答案 1 :(得分:-1)
将dp转换为像素
private int dpToPx(int dp) {
Resources r = getResources();
return Math.round(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp, r.getDisplayMetrics()));
}