How do I put a list in disguise with RecyclerView in Android Studio

0

I need to put the list down, ie the list starts from the java image which should be the first image. This is a RecyclerView

    
asked by anonymous 20.10.2017 / 20:41

1 answer

2

The ideal way would be to make a order on the server where you get the data from the list.

But you can also use Collections.reverse(mList); to reverse the order of your ArrayList .

    
20.10.2017 / 20:45