I'm using @InjectView
for many of my views. After I updated to the newest version 7 they stopped working? What happened?
You are experiencing this because Butterknife version 7 has a new set of naming conventions. You'll need to update your code to use the latest annotations.
Change @InjectView
to @Bind
.
Also change your Java code from Butterknife.inject();
to Butterknife.bind(this)
. I'm assuming you're doing this in an Activity. If you're doing this in a fragment or have more complicated use scenarios, you should check out the Butterknife documentation here
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With