Is there any way to call ButterKnife.reset() in the ViewHolder of a RecyclerView? Normally it's called in onDestroyView() or onDetachedFromWindow(), but the ViewHolder doesn't necessarily have this.
I tried calling it from the individual ViewHolder in the adapter's onViewDetachedFromWindow() method, but because it recycles the views, it causes null pointer exceptions when it tries to access the view that was reset.