Recyclerview View pool Android Recyclerview View pool! what is that? Where do the RecycledViews go ? Most of us think that the RecyclerView picks recycled views from the ViewPool but that is not true, before consulting the ViewPool, there are multiple levels of caches that the RecyclerView goes through in the hunt for a ViewHolder, the Scrap, hidden views, ViewCache and the ViewCacheExtension. The most prominent of those is the ViewCache, so let’s discuss when does a ViewHolder go into the ViewCache and when into the ViewPool. Once a ViewHolder gets recycled, it is pushed into the ViewCache which has a default size of 2, so it can hold as much as 2 views within it, after which it pushes the ViewHolders into the ViewPool, which acts like a Stack of ViewHolders. So what’s the difference in keeping the ViewHolders in the ViewCache or the ViewPool, the ViewHolders in the ViewCache retain some of their state including the Position they were attached ...