Last active
August 8, 2022 08:56
-
-
Save ExNDY/3264892414cc16ba29fa38cf9e1b4fb2 to your computer and use it in GitHub Desktop.
Android converter function dp-to-px
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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