Java tutorial
//package com.java2s; //License from project: Apache License import android.content.res.Resources; import android.util.TypedValue; public class Main { public static int getDimensionSize(int size) { return Math.round(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, size, Resources.getSystem().getDisplayMetrics())); } }