Linked Questions
50 questions linked to/from RecyclerView vs. ListView
1
vote
1
answer
363
views
Why does Recycler View offers a better experience than List View? [duplicate]
I saw you can use a list view to list any view object. But in most of code examples they use a recycler view.
So my question is: When you could use a list view instead of a recycler view ?.
1
vote
1
answer
1k
views
How is RecyclerView better than ListView? [duplicate]
I am a beginner in Android App Development. When I learned about RecyclerView and ListView, I understood that RecyclerView is better than ListView, but I am still confused about the name RecyclerView ...
0
votes
1
answer
118
views
Recycler View or ListView? [duplicate]
I wanted to know when I should use RecyclerView over List View or ListView over RecyclerView and what difference does it make? I have used them both and I know for implementing we use a ViewHolder for ...
1130
votes
46
answers
851k
views
How to add dividers and spaces between items in RecyclerView
This is an example of how it could have been done previously in the ListView class, using the divider and dividerHeight parameters:
<ListView
android:id="@+id/activity_home_list_view"
...
241
votes
5
answers
82k
views
Should we use RecyclerView to replace ListView? [closed]
Android Docs say:
The RecyclerView widget is a more advanced and flexible version of
ListView. This widget is a container for displaying large data sets
that can be scrolled very efficiently by ...
157
votes
7
answers
104k
views
Android Recyclerview vs ListView with Viewholder
I recently came across the android RecyclerView which was released with Android 5.0 and it seems that RecyclerView is just an encapsulated traditional ListView with the ViewHolder pattern incorporated ...
7
votes
3
answers
12k
views
setOnLongClickListener in android with kotlin
How can I use setOnItemClickListner in each item in my ListView?
my xml :
<ListView
android:id="@+id/tv1"
android:layout_width="match_parent"
android:layout_height="wrap_content">
...
3
votes
4
answers
6k
views
Recyclerview checkbox keeping checked problem?
I am using a custom recyclerview adapter with checkbox so that user can select multiple checked items.
In the beginning I faced duplicate checkbox selection while scrolling down so I added a position ...
3
votes
3
answers
3k
views
How to create a ListView with multiple views
my problem is - how to create custom list view with not just repeating one custom view, but like in Instagram or other app where list include other views in it, which it looks like scroll view with ...
2
votes
4
answers
6k
views
Which Recyclerview or ScrollView should I choose?
I created an activity with a ListView. That is a Friend ListView.
I wanna let it choose to add it to another View.
I don't know which View to choose is the best. Recyclerview or ScrollView?
Like ...
3
votes
1
answer
9k
views
What is difference between ListView and RecyclerView [closed]
I wanted to make fast Responsive Adapter.
Which view is more efficient, ListView or RecyclerView?
11
votes
0
answers
6k
views
Difference between recyclerView and recyclerListView?
.Difference between recyclerView and recyclerListView. recyclerListView is ListView?? or both are same?
2
votes
1
answer
4k
views
What is the difference between "Recycleview" and "Listview" on Android?
What is the difference between "Recycleview" and "Listview" on Android?
Exact meaning of Recycleview and Listview in Android.
1
vote
2
answers
1k
views
What to use instead of RecyclerView if not recycling items [closed]
I am a beginner and I have seen many tutorials on how to create a list using RecyclerView, but I can't find any how to use a list without recycling. I have a list of 3 items. what type of view should ...
0
votes
1
answer
3k
views
how add search filter bar in listview kotlin
l have created a list view and the code working fine . also created a search box . I want to implement search functionality on the basis of particular fields of the list. l used list adapter in ...