Skip to content

Instantly share code, notes, and snippets.

@alxsimo
Created October 27, 2014 12:37
Show Gist options
  • Save alxsimo/5241ff8d9631ae16eb1d to your computer and use it in GitHub Desktop.
Save alxsimo/5241ff8d9631ae16eb1d to your computer and use it in GitHub Desktop.
[Android] Convert DP to Pixel
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