Skip to content

Instantly share code, notes, and snippets.

@shau-lok
Created March 30, 2016 02:30
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 shau-lok/592e698204bf59d99664b3ec7981081c to your computer and use it in GitHub Desktop.
Save shau-lok/592e698204bf59d99664b3ec7981081c to your computer and use it in GitHub Desktop.
dip convert to pixel
public static float dipToPixels(Context context, float dipValue) {
DisplayMetrics metrics = context.getResources().getDisplayMetrics();
return TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dipValue, metrics);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment