Skip to content

Instantly share code, notes, and snippets.

@ExNDY
Last active August 8, 2022 08:56
Show Gist options
  • Save ExNDY/3264892414cc16ba29fa38cf9e1b4fb2 to your computer and use it in GitHub Desktop.
Save ExNDY/3264892414cc16ba29fa38cf9e1b4fb2 to your computer and use it in GitHub Desktop.
Android converter function dp-to-px
fun dipToPixels(dip: Int): Int {
return TypedValue.applyDimension(
TypedValue.COMPLEX_UNIT_DIP,
dip.toFloat(),
Resources.getSystem().displayMetrics
).toInt()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment