Kotlin: How can I let Android Studio implement the interface at the bottom of the class

When implementing the interface in the Kotlin class:

When I press Alt + Enter in ClassName, I can add the IDE of the interface function through the "implementation members".

It is annoying that in Kotlin these functions are added at the top of the class. I would like them to be added at the end of the class (as in Java).

How can i do this?

+6
source share
1 answer

. , , , .

+2

All Articles