com.isyscore.kotlin.android.UIUtil.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-android Show documentation
Show all versions of common-android Show documentation
iSysCore Common Android Library
The newest version!
package com.isyscore.kotlin.android
import android.util.DisplayMetrics
object UI {
internal lateinit var dm: DisplayMetrics
/**
* screen density
*/
var density = 0.0F
/**
* screen width
*/
var width = 0
/**
* screen height
*/
var height = 0
}