How can i sort albums from songs?

前端 未结 5 583
一生所求
一生所求 2021-01-27 17:28

So my problem is that when i try to sort the albums, the album title and album art are wrong.

I tried sorting the album ids but that doesn\'t fix it because album id hav

5条回答
  •  旧时难觅i
    2021-01-27 17:42

    First of all, you should make a class Album that holds the information of one specific album. Then either implement Comparable or Comparator Interface.

    • Comparable if the albums are always sorted based on the same field.
    • Comparator if you need to implement multiple sorting logic

提交回复
热议问题