Created
December 11, 2014 10:05
-
-
Save Phocacius/8d21c98b83f030eb93b9 to your computer and use it in GitHub Desktop.
Android class that converts density to raw pixels and vice versa
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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