I\'m attempting to use Butter Knife to simplify creation of a custom BaseAdapter class. I\'m following the example here: http://jakewharton.github.io/butterknife/ under the \"A
Those who are still looking it happens if you are trying to bind wrong View type from XML in Java file it .
For example
You have TextView with id result
And you try to bind it with Button in java file
@BindView(R.id.result) Button result;
It gone crash you app.
Butterknife will throw exception for illegal casting of views as Unable to Inject View Error