With Android Studio I can easily generate Java cod...
# android
f
With Android Studio I can easily generate Java code, for example when I'm adding a subscriber to an observable I can just type
.subscribe(new Subscri)
(finishing off with an enter), and it sets up an empty subscriber with
onCompleted
,
onError
and
onNext
methods. Is there a way to achieve the same functionality for Kotlin? Searching for answers mostly gives results concerning normal autocomplete, as I'm not sure whether this feature has a specific name.