rewgoes/VoteIt

RecyclerView is leaking mContext

Closed this issue · 1 comments

RecyclerView in SurveyListFragment is leaking activity context

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();
}