Fixed item hidden issue of music-player 94/316294/1
authorMd. Shahrukh Islam/NC eXperience Group /SRBD/Engineer/Samsung Electronics <shahrukh.i@samsung.com>
Mon, 19 Aug 2024 05:11:16 +0000 (11:11 +0600)
committerMd. Shahrukh Islam/NC eXperience Group /SRBD/Engineer/Samsung Electronics <shahrukh.i@samsung.com>
Mon, 19 Aug 2024 05:11:16 +0000 (11:11 +0600)
[Problem] [TNINE-4166] When music list is long the last item is partially covered vy the botton TAB bar.

[Cause & Measure]
 Cause : HeightSpecification was using LayoutParamPolicies.WrapContent.
 Measure : Used LayoutParamPolicies.MatchParent instead of LayoutParamPolicies.WrapContent.

Change-Id: I1aa1749ee8e632ba87f1a9996651a26a3b65149d
Signed-off-by: Md. Shahrukh Islam/NC eXperience Group /SRBD/Engineer/Samsung Electronics <shahrukh.i@samsung.com>
music-player/Views/BaseContentView.cs
packaging/org.tizen.MusicPlayer-1.0.1.tpk

index 618deba348ccd5159266f5d138b85ac1b7f6eea7..abc246e55f6ab76d9766ca9fc24b5de52465644e 100755 (executable)
@@ -62,7 +62,7 @@ namespace MusicPlayer.Views
                 ItemsLayouter = new LinearLayouter(),
                 ScrollingDirection = ScrollableBase.Direction.Vertical,
                 WidthSpecification = LayoutParamPolicies.MatchParent,
-                HeightSpecification = LayoutParamPolicies.WrapContent,
+                HeightSpecification = LayoutParamPolicies.MatchParent,
                 SelectionMode = ItemSelectionMode.Single,
             };
             collectionView.ScrollDragStarted += (object o, ScrollEventArgs e) =>
index 57364ccc09e30e5a6f6a4f479095c5a29ad72f03..1149ef0c168c75ce0e537214a274ce74bb3b0e8b 100644 (file)
Binary files a/packaging/org.tizen.MusicPlayer-1.0.1.tpk and b/packaging/org.tizen.MusicPlayer-1.0.1.tpk differ