mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-29 04:55:23 +00:00
10 lines
316 B
Kotlin
10 lines
316 B
Kotlin
|
package com.topjohnwu.magisk.extensions
|
||
|
|
||
|
import android.content.res.Resources
|
||
|
import kotlin.math.ceil
|
||
|
import kotlin.math.roundToInt
|
||
|
|
||
|
fun Int.toDp(): Int = ceil(this / Resources.getSystem().displayMetrics.density).roundToInt()
|
||
|
|
||
|
fun Int.toPx(): Int = (this * Resources.getSystem().displayMetrics.density).roundToInt()
|