Create an instance of an abstract class in Kotlin

Solution 1:

You can use this method:

var variableName = object: CountDownTimer(...){
    ...
}

These are called "object expressions" in Kotlin. The docs are available here: Object expressions