9 lines
193 B
Kotlin
9 lines
193 B
Kotlin
package exh.util
|
|
|
|
import android.content.Context
|
|
|
|
fun dpToPx(context: Context, dp: Int): Int {
|
|
val scale = context.resources.displayMetrics.density
|
|
return (dp * scale + 0.5f).toInt()
|
|
}
|