Skip to content

Instantly share code, notes, and snippets.

@vinaysshenoy
Created February 21, 2017 05:28
Show Gist options
  • Save vinaysshenoy/c52ecb721090f06935526ce11b0dee40 to your computer and use it in GitHub Desktop.
Save vinaysshenoy/c52ecb721090f06935526ce11b0dee40 to your computer and use it in GitHub Desktop.
SpPxConvertion
public static float spToPx(float sp) {
return TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, sp, Resources.getSystem().getDisplayMetrics());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment