Skip to content

OtherExtensions

Birju Vachhani edited this page Sep 26, 2019 · 1 revision

Put Extras into Intent

intent.put {
    "name" to "Birju"
    "age" to 23
}

Check/Uncheck a Checkable view

// checkBox.isChecked = true
checkBox.check()

// checkBox.isChecked = false
checkBox.uncheck()

For more information, look at the Utils.kt file.