Created
October 27, 2014 12:37
-
-
Save alxsimo/5241ff8d9631ae16eb1d to your computer and use it in GitHub Desktop.
[Android] Convert DP to Pixel
This file contains hidden or 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
private int dp2px(int dp) { | |
return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp, | |
getResources().getDisplayMetrics()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment