I\'m currently learning butterknife, and I need to bind specific @OnClicks on different views generated by my customer adapter. How do I go about with this?
As @Ugur has suggested you would initiate your ViewHolder using butterknife. You can add an on click listener to a view by doing this as an example for the userName View:
@OnClick(R.id.user_name)
public void clickedUserName(SocialEyeTextView userName)
{
//Do something with user name
}