I\'m using the support RecyclerView in my app, and I see the most bizarre thing. It doesn\'t display any items until I touch to scroll. Then, all of a sudden, the RecyclerView p
In my case it's only happen on Android 6. above this version I didn't had any problems.
So what I've found to work is to use recyclerView.scrollBy(0, 0).
Check it maybe it will work for you too.