Android: Kotlin with Butterknife
问题 I'm trying to use Kotlin with Butterknife for my Android Application. Here is my build.gradle dependencies { ... compile 'com.jakewharton:butterknife:8.0.1' kapt 'com.jakewharton:butterknife-compiler:8.0.1' } kapt { generateStubs = true } I also has an EditText and I want to show a message using ButterKnife when it is changed: @OnTextChanged(R.id.input) fun test() { toast(1) } However, nothing happens. I put a breakpoint into the function - and it is not even executed. P.S: I have heard about