recyclerview-playground icon indicating copy to clipboard operation
recyclerview-playground copied to clipboard

Examples of RecyclerView use and custom LayoutManager implementations

Results 13 recyclerview-playground issues
Sort by recently updated
recently updated
newest added

Hi I use the FixedGridLayoutManager. I want RecyclerView to scroll right on the first boot. Help me please. It is very necessary

Update android plugin version from 2.1.0 to 3.5.1 Update target Sdk from 23 to 29 Replace support artifacts with AndroidX

Hello, I used FixedGridLayoutManager for layout of Recyclerview and I got the layout issue when I tried to swipe vertical too fast. Please help me review my issue. Thanks.

Hi, first thanks for this playground around RecyclerView adapters. This and the talk are extremely useful resources. I was thinking on modifying the FixedGridLayoutManager to support fixed headers for both...

```java // Save state private Parcelable recyclerViewState; recyclerViewState = recyclerView.getLayoutManager().onSaveInstanceState(); // Restore state recyclerView.getLayoutManager().onRestoreInstanceState(recyclerViewState); ``` FixedGridLayoutManager onSaveInstanceState and onRestoreInstanceState does not implement

For my use case, I had to include a RecylerView a NestedScrollVIew. Once I do that, the layout manager does not work anymore. I thought it would be a height...

Hello and thank you for these great examples. With FixedGridLayoutManager is it possible to have the columns with different widths? I noticed that all column widths are determined by the...

Hello Sir, I'm creating multi dimensional recycler view that will scroll infinitely in horizontal direction, vertical direction and diagonally. but I'm getting problem with when i scroll to any direction...

Hi All, I was playing around FixedGridLayoutManager and tried to have a RecyclerView with FixedGridLayoutManager as an item of RecyclerView with LinearLayoutManager (Vertical). The problem is now the RecyclerView with...