How can i sort albums from songs?

前端 未结 5 581
一生所求
一生所求 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条回答
  •  逝去的感伤
    2021-01-27 18:05

    If I understand your code correctly, you're creating a list of strings which contains albums, then sorting this list independent of the original Query songs list. This means the album art remains untouched. I'd suggest implementing a comparable or comparator.

提交回复
热议问题