How can i sort albums from songs?

前端 未结 5 576
一生所求
一生所求 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 17:47

    The reason why the 2, coverart and title mismatch is because you sort one and leave out the other as is. Consider the below example :

    Album before sort -

    1. World
    2. Hello

    Id before sort- 1 2

    Album after sort 1. Hello 2. World

    But id remains as such. So when you build the uri for the coverart using the id list, id picked at position 0 is of album at position 1.

提交回复
热议问题