Created
October 5, 2019 11:50
-
-
Save sudeshim3/d27b39c523d0e88f3fe037973292973e to your computer and use it in GitHub Desktop.
This file contains 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
//UI Unit conversion. | |
fun Context.pxToDp(dimension: Int) = dimension / this.resources.displayMetrics.density | |
fun Context.pxToSp(dimension: Int) = dimension / this.resources.displayMetrics.scaledDensity | |
fun Context.dpToPx(dimension: Int) = dimension * this.resources.displayMetrics.density | |
fun Context.spToPx(dimension: Int) = dimension * this.resources.displayMetrics.scaledDensity |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment