void GetRecommendSongs()
 {
     Task.Run(() => {
         var r = CloudMusicApiHelper.GetRecommendSongs();
         if (r != null)
         {
             if (r.code == 200)
             {
                 recommendSongs = r;
                 if (recommendSongs.recommend.Count > 0)
                 {
                     GetSiMiUsers(recommendSongs.recommend[0].id.ToString());
                     //ThemeColors colors= await DependencyService.Get<IPalette>().GetColorAsync(new UriImageSource {Uri=new Uri(recommendSongs.recommend[0].album.picUrl)});
                     //MainColor = colors.MainColor;
                 }
             }
         }
     });
 }