About 3,030,000 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 …

  2. 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 …

  3. 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 …

  4. Simple Android grid example using RecyclerView with …

    I know that RecyclerView has replaced the functionality of the old ListView and GridView. I am looking for a very basic example that shows a minimal grid setup using RecyclerView. I am not …

  5. 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 …

  6. android - Get visible items in RecyclerView - Stack Overflow

    You will only get visible items from recyclerView.getChildAt(), thats how generally RecyclerView works. RecyclerView will try to hold only few child views which are currently visible (ie; within …

  7. java - RecyclerView onClick - Stack Overflow

    Jun 29, 2014 · 679 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 …

  8. android - RecyclerView - How to smooth scroll to top of item on a ...

    Learn how to smooth scroll to the top of an item in a RecyclerView at a specific position in Android development.

  9. android - RecyclerView vs. ListView - Stack Overflow

    From android developer (Creating Lists and Cards): The RecyclerView widget is a more advanced and flexible version of ListView. Okay, it sounds cool, but when I saw this example picture, I …

  10. RecyclerView store / restore state between activities

    Jan 30, 2015 · I'm migrating my ListViews to RecyclerViews. With listviews I used the common technique described here to store and restore scroll position between activities. How to do the …