[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>
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) =>