Questions tagged as 'recyclerview'

0
answers

Animation in items from a recyclerview

I'm trying to animate the items in a recyclerview and I want to do something like this: What I currently do to animate the items in the recyclerview is the following: final Animation animation= AnimationUtils.loadAnimation(context,R....
asked by 31.10.2016 / 18:02
2
answers

Filter and display the data in a listView or recyclerview

In my main activity I have a button that when pressed calls an API-REST to consume a Json with the weather forecast of a city for the next 5 days, this prediction is saved in an ArrayList of Prediction objects. The prediction is shown...
asked by 21.09.2016 / 20:15
0
answers

Fill a spinner inside RecyclerView

Hello I have a RecyclerView in which I want to place a spinner to place the amount I need of a product as well as to be able to delete an item. I appreciate who can guide me since the spinner is not working. I am driving an activity and an adapt...
asked by 10.08.2016 / 23:43
2
answers

Go to another activity by clicking on RecyclerView

Hi, I'm working with a RecyclerView and a barra de buscar in Android Studio with Firebase , my search bar if it works but what I try to do is that when I click on an option of RecyclerView is sent to another...
asked by 08.12.2017 / 03:12
1
answer

How to update adapter data when editing text from a recyclerview

Good afternoon, I'm new to the forum so I apologize if I'm wrong with the question or it's a very silly question. It turns out that I am making an application and I have a recyclerview where it has a edittext which carries the q...
asked by 08.05.2017 / 23:50
1
answer

RecyclerView in Fragment

here with another question I am doing an Android application and the problem is that when calling the RecyclerView I get this error:    E / RecyclerView: No adapter attached; skipping layout But I do not know why I get this error and only...
asked by 06.03.2017 / 05:19
1
answer

RecyclerView duplicating items when starting the application

When starting the fragment and loading the recyclerview, it duplicates the items. private void loadData() { if (categoriaList.size() > 0) categoriaList.clear(); miprogress.setVisibility(View.VISIBLE); db.collection("cat...
asked by 25.04.2018 / 20:23
1
answer

Edit EditText from RecyclerView from outside (from the RecyclerView)

Could someone give me some solution or guide me with this: I am implementing a RecyclerView (with a LinearLayoutManager) that shows a list with two, three or four EditText, in each row, according to the DataSet that it loads (it can only be o...
asked by 08.01.2018 / 05:02
1
answer

Sort Recyclerview by date

I have my RecyclerView that gets the data from my MySQL database through json. The fact is that when I run the app and it gets the remote data, I want it to be ordered by date taking advantage of the box in which I have the date. I need the e...
asked by 14.09.2017 / 10:31
3
answers

How to update items in RecyclerView when a record is deleted, updated or added?

I'm working with the detail master pattern, when I'm in landscape mode the list and detail is displayed (it should be noted that in the detail you could call a fragment that contains the logic to add a new record), that's where it goes the probl...
asked by 22.08.2017 / 23:30