Skip to content

Instantly share code, notes, and snippets.

@srayhunter
Created January 6, 2016 06:59
Show Gist options
  • Save srayhunter/28a3c90e802b6b92e108 to your computer and use it in GitHub Desktop.
Save srayhunter/28a3c90e802b6b92e108 to your computer and use it in GitHub Desktop.
Android - Convert DP to Pixels

Android - Convert DP to Pixels

Convert 32dp to pixels

Resources r = getResources();
float pixels = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 32, r.getDisplayMetrics());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment