Skip to content

Instantly share code, notes, and snippets.

@haseebpvt
Created June 7, 2019 22:02
Show Gist options
  • Select an option

  • Save haseebpvt/44aec003d10bc191ad96b59adfed67b9 to your computer and use it in GitHub Desktop.

Select an option

Save haseebpvt/44aec003d10bc191ad96b59adfed67b9 to your computer and use it in GitHub Desktop.
Method to convert DP to pixel
public static int convertDip2Pixels(Context context, int dip) {
return (int)TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dip, context.getResources().getDisplayMetrics());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment