Skip to content

Instantly share code, notes, and snippets.

@Phocacius
Created December 11, 2014 10:05
Show Gist options
  • Save Phocacius/8d21c98b83f030eb93b9 to your computer and use it in GitHub Desktop.
Save Phocacius/8d21c98b83f030eb93b9 to your computer and use it in GitHub Desktop.
Android class that converts density to raw pixels and vice versa
public class MetricsCalculator {
public static float convertDpToPixel(float dp,Context ctx) {
Resources resources = ctx.getResources();
DisplayMetrics metrics = resources.getDisplayMetrics();
return dp * (metrics.densityDpi / 160f);
}
public static float convertPixelToDp(float px, Context ctx) {
Resources resources = ctx.getResources();
DisplayMetrics metrics = resources.getDisplayMetrics();
return px / (metrics.densityDpi / 160f);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment