Mulverine
fun dipToPixels(context: Context, dipValue: Float): Float { val metrics: DisplayMetrics = context.getResources().getDisplayMetrics() return TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dipValue, metrics) }
A modern programming language that makes developers happier.