如何在 android 的选项卡布局中对 ListFragment 进行排序并在同一选项卡中显示升序和降序?
How to sort ListFragment and display both accednding and descending order in the same tab in tab layout in android?
我有一个包含 3 个选项卡的选项卡式布局。所有选项卡都加载了列表片段。我需要按升序和降序对列表片段进行排序。在同一选项卡中显示两者。当我们点击选项卡时,它应该按升序排序。如果再次选择相同的标签,则按降序排列并显示结果。
是否可以在选项卡中嵌套列表片段?
是的,我们可以通过使用 Collections.reverse(list)
来实现
// Here we are using reverse() method
// to reverse the element order of mylist
Collections.reverse(mylist);
我有一个包含 3 个选项卡的选项卡式布局。所有选项卡都加载了列表片段。我需要按升序和降序对列表片段进行排序。在同一选项卡中显示两者。当我们点击选项卡时,它应该按升序排序。如果再次选择相同的标签,则按降序排列并显示结果。
是否可以在选项卡中嵌套列表片段?
是的,我们可以通过使用 Collections.reverse(list)
来实现 // Here we are using reverse() method
// to reverse the element order of mylist
Collections.reverse(mylist);