Bound view is null when using Butterknife in fragment
I am using Butterknife to bind a single view in one of my fragments. I have used Butterknife with no issue in a separate fragment, but for some reason in this fragment the bound view is null. I am trying to add a child layout to it and I am receiving a NPE and I cannot figure out why. The setup I have in this fragment is the same as I have in my other fragment that works perfectly. This is a snippet from the fragment including the Butterknife code. private View view; @BindView(R.id.layoutHolder) LinearLayout layoutHolder; public View onCreateView(LayoutInflater inflater, ViewGroup container,