Fix Album Art/Track Thumbnail not showing in fullscreen 61/320161/1
authorMd. Farhan Mahtab/NC eXperience Group /SRBD/Engineer/Samsung Electronics <farhan.m1@samsung.com>
Fri, 8 Nov 2024 10:02:28 +0000 (16:02 +0600)
committerMd. Farhan Mahtab/NC eXperience Group /SRBD/Engineer/Samsung Electronics <farhan.m1@samsung.com>
Fri, 8 Nov 2024 10:02:28 +0000 (16:02 +0600)
[Problem][TNINE-5248][RPi4] [Target] [32 bit] [Music] -> Album art / track thumbnail was not shown while playing track in full screen [9.0]
[Cause & Measure]
 Cause   : Thumbnail imageview wasn't binded to Thumbpath
 Measure : Thumbnail imageview binded to Thumbpath at initialization

Change-Id: I5e39fe642f66e5d7d6f5f636a9fef22f4747c3f1
Signed-off-by: Md. Farhan Mahtab/NC eXperience Group /SRBD/Engineer/Samsung Electronics <farhan.m1@samsung.com>
music-player/Views/LyricsView.cs

index c48653685d42860ed9588f6551a1ed4bf832dc62..6d80f5aff6768ba33f208f2f38d71e539d24ca4d 100755 (executable)
@@ -125,6 +125,7 @@ namespace MusicPlayer.Views
                 Margin = new Extents(0, 0, 0, 0),
             };
             Add(thumbView);
+            thumbView.SetBinding(ImageView.ResourceUrlProperty, "ThumbPath");
             FlexLayout.SetFlexPositionType(thumbView, FlexLayout.PositionType.Absolute);
         }