Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kotlin View setEnabled function missing?

Tags:

android

kotlin

In Kotlin, when using kotlinx.android.synthetic to access the View (e.g. Button), the setEnabled() function is missing? The isEnabled() function is still there.

How could I setEnabled()?

like image 629
Elye Avatar asked May 27 '16 10:05

Elye


2 Answers

As said in the reference, Java getters and pairs of getter and setter are represented as properties in Kotlin, using the following logic:

  • T getSomething() (+ void setSomething(T)) → something: T
  • T isSomething() (+ void setSomething(T)) → isSomething: T

If there is a setter, a var-property is seen from Kotlin, otherwise it's an unmodifiable val.

Instead of setEnabled(value) just use isEnabled = value.

like image 138
hotkey Avatar answered Nov 14 '22 00:11

hotkey


Apparently we now set it using

button.isEnabled = true
like image 7
Elye Avatar answered Nov 13 '22 23:11

Elye