About 52 results
Open links in new tab
  1. Simple Android RecyclerView example - Stack Overflow

    I've made a list of items a few times using Android's RecyclerView, but it is a rather complicated process. Going through one of the numerous tutorials online works (this, this, and this are good),...

  2. How to build a horizontal ListView with RecyclerView

    405 I need to implement a horizontal listview in my Android application. I did a bit of research and came across How can I make a horizontal ListView in Android? and Horizontal ListView in Android?. …

  3. android - RecyclerView vs. ListView - Stack Overflow

    RecyclerView was created as a ListView improvement, so yes, you can create an attached list with ListView control, but using RecyclerView is easier as it: Reuses cells while scrolling up/down - this is …

  4. How to create RecyclerView with multiple view types

    From Create dynamic lists with RecyclerView: When we create a RecyclerView.Adapter we have to specify ViewHolder that will bind with the adapter. public class MyAdapter extends …

  5. Simple Android grid example using RecyclerView with …

    recyclerView.setLayoutManager(new GridLayoutManager(this, numberOfColumns)); If you need more help than that, then check out the following example. Full example The following is a minimal …

  6. How to add a recyclerView inside another recyclerView

    I'm planning to develop an app that shows some dynamic data inside a recyclerCardView. So i decided add a recyclerView called CheckBoxRecyclerView inside my main recyclerView. This is my code for …

  7. How to add dividers and spaces between items in RecyclerView

    Unlike ListView, the RecyclerView class doesn't have any divider-related parameters. Instead, you need to extend ItemDecoration, a RecyclerView 's inner class: An ItemDecoration allows the application to …

  8. java - RecyclerView onClick - Stack Overflow

    Jun 29, 2014 · 678 Has anyone using RecyclerView found a way to set an onClickListener to items in the RecyclerView? I thought of setting a listener to each of the layouts for each item but that seems a …

  9. How do I create a circular (endless) RecyclerView?

    Jul 7, 2015 · I am trying to make my RecyclerView loop back to the start of my list. I have searched all over the internet and have managed to detect when I have reached the end of my list, however I am …

  10. Refreshing data in RecyclerView and keeping its scroll position

    Feb 22, 2015 · How does one refresh the data displayed in RecyclerView (calling notifyDataSetChanged on its adapter) and make sure that the scroll position is reset to exactly where it was? In case of good ol'