“Establecer margen programáticamente Android Kotlin” Código de respuesta

Establecer margen programa ttely kotlin android

val param = btnClickMe.layoutParams as ViewGroup.MarginLayoutParams
param.setMargins(10,10,10,10)
btnClickMe.layoutParams = param // Tested!! - You need this line for the params to be applied.
Helpless Hornet

Establecer margen programáticamente Android Kotlin

fun View.margin(left: Float? = null, top: Float? = null, right: Float? = null, bottom: Float? = null) {
    layoutParams<ViewGroup.MarginLayoutParams> {
        left?.run { leftMargin = dpToPx(this) }
        top?.run { topMargin = dpToPx(this) }
        right?.run { rightMargin = dpToPx(this) }
        bottom?.run { bottomMargin = dpToPx(this) }
    }
}

inline fun <reified T : ViewGroup.LayoutParams> View.layoutParams(block: T.() -> Unit) {
    if (layoutParams is T) block(layoutParams as T)
}

fun View.dpToPx(dp: Float): Int = context.dpToPx(dp)
fun Context.dpToPx(dp: Float): Int = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp, resources.displayMetrics).toInt()
Stockholm

Respuestas similares a “Establecer margen programáticamente Android Kotlin”

Preguntas similares a “Establecer margen programáticamente Android Kotlin”

Más respuestas relacionadas con “Establecer margen programáticamente Android Kotlin” en Kotlin

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código