Android - Reverse listview as message display

前端 未结 4 788
北海茫月
北海茫月 2020-12-17 16:50

I\'ve got a little question for my Android App. I searched for a long time but found nothing about my problem.

Scenario : I\'ve to display a revert

4条回答
  •  独厮守ぢ
    2020-12-17 17:31

    do like this:

    Collections.reverse(YourList); // ADD THIS LINE TO REVERSE ORDER!
    YourList.notifyDataSetChanged;
    

提交回复
热议问题