I get java.lang.RuntimeException exception: Unable to bind views for fragment on ButterKnife.bind (this, view). The code looks like this:
@Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.fragment_personal, container, false); ButterKnife.bind(this, view); BindData(); return view; }
android butterknife
Mufaddal Gulshan
source share