嵌套的RecyclerView wrap_content导致OutOfMemoryError

时间:2016-05-19 09:03:58

标签: android android-recyclerview android-wrap-content

我有NestedScrollView,其中包含RecyclerView wrap_content

<android.support.v7.widget.RecyclerView
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

  LinearLayoutManager layoutManager = new LinearLayoutManager(getActivity());
  layoutManager.setAutoMeasureEnabled(true);
  rvStream.setLayoutManager(layoutManager);
  rvStream.setNestedScrollingEnabled(false);

当我用它来加载图像列表(使用毕加索)时,我得到了内存泄漏:

  

java.lang.OutOfMemoryError:无法分配24字节分配   0个空闲字节和-3040B直到OOM

如何避免它,我也在使用延迟加载

0 个答案:

没有答案