I try to bind ButterKnife to a AleterDialog that i made with a DialogBuilder method And exist this method ButterKnife.bind(Object,Dialog); but dosen\'t work for me<
ButterKnife.bind(Object,Dialog);
You need to inflate your dialog layout and pass the resulting View object to butterknife.
view = View.inflate(getContext(), R.layout.accountlist_dialog_user_, null); ButterKnife.bind(this, view);
At least, that's how I've used Butterknife in dialogs and it works fine for me.