Search code examples
androidandroid-recyclerviewgridlayoutmanager

RecyclerView wrap_content with GridLayoutManager


I've seen workarounds with LinearLayoutManager, but not with GridLayoutManager. Any ideas?


Solution

  • I've solved the problem by using only one RecyclerView and using getItemViewType(int position) method in the adapter. Example here.