Skip to content

Instantly share code, notes, and snippets.

@chowaikong
Last active December 23, 2016 07:02
Show Gist options
  • Save chowaikong/254a4f7c974b42f2f5f1cb8bba243f89 to your computer and use it in GitHub Desktop.
Save chowaikong/254a4f7c974b42f2f5f1cb8bba243f89 to your computer and use it in GitHub Desktop.
DimenUtil
public int dp2px(float dp) {
DisplayMetrics displayMetrics = getContext().getResources().getDisplayMetrics();
return Math.round(dp * (displayMetrics.densityDpi / DisplayMetrics.DENSITY_DEFAULT));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment