About 2,230,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. RecyclerView - get all existing views/viewholders

    Jan 12, 2016 · Defaultly I set the visibility of the label when I create the view holder and that's fine, but I want the user to change the labels visibility through the menu while the RecyclerView is …

  3. How to build a horizontal ListView with RecyclerView

    Feb 11, 2015 · 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 …

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

  5. Android - how to change Recyclerview height dynamically?

    Jul 14, 2015 · yep, i forgot to notice that. The reason is i want to use multi recyclerview at time inside a scroolview. And, if i set the height of any recyclerview to wrapcontent it will take all the …

  6. How can a divider line be added in an Android RecyclerView?

    Jul 6, 2015 · I am developing an android application where I am using RecyclerView. I need to add a divider in RecyclerView. I tried to add - recyclerView.addItemDecoration(new …

  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 …

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

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

    Jul 28, 2014 · 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 …

  10. android - RecyclerView is missing - Stack Overflow

    Jun 27, 2014 · I just installed the new SDK tools (Android L Developer Preview), and I'm trying to use RecyclerView but it seems to be missing. From my understanding I should include the v7 …