Created
November 17, 2017 22:41
-
-
Save ziginsider/af26d3d35c05e82150dac0c7ddec7dd4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RecyclerView.RecycledViewPool viewPool; | |
public OuterRecyclerViewAdapter(List<Item> items) { | |
//получаем пул для внешнего списка | |
viewPool = new RecyclerView.RecycledViewPool(); | |
} | |
@Override | |
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { | |
//для каждого вложенного списка задаем пул | |
holder.innerRecyclerView.setRecycledViewPool(viewPool); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment