Most voted "android-recyclerview" questions
Recyclerview is a more advanced and flexible version of Listview. It was introduced with the Android L Developer Preview, but is also available as part of the Support Library.
Learn more…119 questions
Sort by count of
-
0
votes2
answers34
viewsRecover firebase data - order items
Good afternoon I am trying to list all the items of a request in a Recycler view, but the query only returns a value as below : public void recuperarItemPedido(String idPedido1) { databaseReference…
-
0
votes0
answers58
viewsImplement checkbox in Recyclerview?
By clicking on the checkbox I run the list click (opens an Activity). To check the checkbox you have to keep pressed. I understand it could be this one click conflict over another. How can I then…
java android android-studio checkbox android-recyclerviewasked 4 years, 8 months ago Lucas Fernandes 1 -
0
votes1
answer65
viewsKotlin - Pass data between Fragments
I’m having a problem with an app I’m designing. I have 3 Fragments ( F1, F2, and F3): In F1 (contains a list with a series of sports) the user makes the choice regarding a sport (I use a Recycleview…
-
0
votes1
answer225
viewsUpdate Recyclerview does not update the item in the list
I have a simple recyclerView and Adapter below where I do the CRUD before saving in BD, and everything works except the update, where I update the item by Adapter but the view in the list does not…
-
0
votes1
answer39
viewsRecycler View is having overwritten elements when I make a new data request
I’m having trouble requisitioning and putting the results in Recycler View. Whenever I make a new request Recycler View has the elements replaced instead of preserving what has already been called…
-
0
votes1
answer16
viewsCrasha app when setting an Adapter for a Recyclerview
Hello, I’m new to Recyclerview, I’m trying to create an Adapter for it, but when I define an Adapter for Recyclerview, the crash app, someone knows why? Mainactivity /... RecyclerView recyclerView =…
-
0
votes0
answers16
viewsPosition search Itemclick Arraylist
Good Night, I have an Activity with Recyclerview and Searchview by clicking on any cell brings me a new attempt with the information of the chosen cell, but when searching a given word returns item…
-
0
votes1
answer155
viewsRecyclerview No Adapter Attached; Skipping layout (Kotlin) How to resolve?
Oops guys, I’m having this problem. I’m developing a CRUD in Kotlin and I’m having difficulties in the database reading page... Once I enter Activity, loads the Textsviews and all the other elements…
-
0
votes0
answers7
viewsXamarin.Android recyclerView fill parent height fully
I have a recyclerView and a linearLayout, both brothers and sons of a relativeLayout. The linearLayout should always be aligned below, so I would like Recycler to occupy all of the father’s space,…
-
0
votes0
answers13
viewsLoad specific items from a recyclerView
I have an Adapter that loads all data from my list, in my list there is a Boolean field that I will use to filter the favorite items, as I do so that in my recyclerView I select only those that are…
-
-1
votes1
answer68
viewsRecyclerview reuse of View
I’m Implementing a RecyclerView as follows: class ObjAdapter extends RecyclerView.Adapter<ObjetoHolder>{ private RealmResults<Objeto> objetos; private final SimpleDateFormat sdf = new…
android android-adapter android-recyclerviewasked 8 years, 4 months ago Thiago Luiz Domacoski 7,310 -
-1
votes1
answer99
viewsError in Java database
Hello, I "created" an application with user registration and login, after the login screen that comes the problem, the system to log in is working, started to give problem after I created a screen…
java android android-studio sqlite android-recyclerviewasked 5 years, 7 months ago Gabriel Delfino 51 -
-1
votes1
answer715
viewsonClick Recyclerview Android
I’m following this implementation tutorial of Tablayout and Viewpager with Recyclerview: Tablayout and Viewpager with Recyclerview I’m using this project to test how to catch the click action in…
-
-1
votes1
answer91
viewsComparing text of items from a recyclerview
I wonder how to compare text of items of a recyclerView on android. And if the texts are the same, render the text of the entry below GONE. public void pegarTexto (){ TextView um = (TextView)…
-
-1
votes1
answer79
viewsHow to inflate a custom view within a recyclerview view?
Following this example,I am creating an expandable recyclerview,to create a comments session and feedback responses in my app. It is possible to create a linear vertical layout, in which several…
-
-1
votes1
answer123
viewsRecyclerview inside another Recyclerview using Firebase Android data
I’m learning about android now, and putting into practice what I’m learning, but now I have a problem that I can not solve, or find exactly what I want My idea was to add a recyclerView in Vertical…
-
-1
votes1
answer28
viewshow to filter what will appear in Recyclerview
I want to filter what will appear in Recyclerview, is possible? There is a Calendarview and I want that when someone clicks on a day from the calendarview, it shows itemviews only from that date,…
android android-studio android-adapter android-recyclerview calendarasked 3 years, 5 months ago izadora 1 -
-2
votes2
answers57
viewsRecyclerview does not display data
I have a problem where Recyclerview does not render on Activity. Textviews load normally. In the Emulator I use level 24 or 30 Apis and physical applications. This appearing this way, the Recycler…
java android android-layout android-recyclerviewasked 3 years, 8 months ago Filipe IKOGNYT Andrade 1 -
-3
votes2
answers22
viewsRecyclerview is not rolling in inside the Drawerlayout
I added a Recyclerview in inside a Drawelayout, but for some reason the Recyclerview scroll doesn’t work acitivty_main.xml <androidx.drawerlayout.widget.DrawerLayout…