Skip to content Skip to sidebar Skip to footer

Lambda Expression On Interface In Kotlin

I'm converting a project in Java to Kotlin and I'm surprise that interface made the code heavier in Kotlin than in Java. Example: I want to set the onBackPressListener in MainActi

Solution 1:

The lambda version works only when kotlin interop with java because SAM Conversions, see the official documents.

Also note that this feature works only for Java interop; since Kotlin has proper function types, automatic conversion of functions into implementations of Kotlin interfaces is unnecessary and therefore unsupported.

So if you want use lambda to set the listener with pure kotlin, you can define your listener and setOnBackPressed method like this:

var listener: (() -> Unit)? = nullfunsetOnBackPressed(l: () -> Unit) {
    listener = l
}

then invoke it by:

listener?.invoke()

Solution 2:

You use Java style while use Kotlin =)

If you really want to use OnBackPressedListener you can just wrap it in inline function, like:

inlinefunbackPress(crossinline action:()->Unit):OnBackPressedListener {
    returnobject: OnBackPressedListener {
        overridefunonBackPressed() {
            action()
        }
    }
}

And then just set listener

activity.setOnBackPressed(backPress {  
/* Do something */
})

Post a Comment for "Lambda Expression On Interface In Kotlin"