Skip to content

Instantly share code, notes, and snippets.

View trangcongthanh's full-sized avatar
👀
Bug Breeder

Thành Trang trangcongthanh

👀
Bug Breeder
View GitHub Profile
@trangcongthanh
trangcongthanh / .kt
Created May 20, 2020 10:40 — forked from titoaesj/.kt
Android convert int to dp
OBS: O var_number_int é a varável que recebera o valor a ser convertido em DP
(int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, var_number_int, getResources().getDisplayMetrics())
##KOTLIN
val Int.dp: Int
get() = (this * Resources.getSystem().displayMetrics.density + 0.5f).toInt()
val Float.dp: Int