RecyclerView is leaking mContext
Closed this issue · 1 comments
rewgoes commented
RecyclerView in SurveyListFragment is leaking activity context
rewgoes commented
Fix:
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_survey_list, container, false);
mUnbinder = ButterKnife.bind(this, view);
...
}
@Override
public void onDestroyView() {
super.onDestroyView();
mUnbinder.unbind();
}