Skip to content

Instantly share code, notes, and snippets.

@mandhor
Created April 6, 2015 21:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mandhor/e89d2547eaad7b9ab82b to your computer and use it in GitHub Desktop.
Save mandhor/e89d2547eaad7b9ab82b to your computer and use it in GitHub Desktop.
Convert DP to PX ( android dip dp pixels px )
int dp = 123;
float px = 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