I have a view instance. From that I am able to bind views using :
Butterknife.findById(view,R.id.textUser)
I think you are talking about @OnClick Annotation.
Simple usage:
@OnClick(R.id.textUser)
void userClicked(TextView textView){
//do stuff
}