Skip to content

Instantly share code, notes, and snippets.

@hector6872
Last active May 13, 2020 20:26
Show Gist options
  • Save hector6872/478dfc55a6a4c9ac7a3ee974cf912cbe to your computer and use it in GitHub Desktop.
Save hector6872/478dfc55a6a4c9ac7a3ee974cf912cbe to your computer and use it in GitHub Desktop.
Android DpToPx converter
int sizePx = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, sizeDp, context.getResources().getDisplayMetrics());
DisplayMetrics displayMetrics = Resources.getSystem().getDisplayMetrics();
float sizePx = (sizeDp * displayMetrics.density);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment