[NUI] Fix picker, scroller animation gives abnormal position value
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.Components / Controls / ScrollableBase.cs
1 /* Copyright (c) 2021 Samsung Electronics Co., Ltd.
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  *
15  */
16 using System;
17 using Tizen.NUI.BaseComponents;
18 using System.Collections.Generic;
19 using System.ComponentModel;
20 using System.Diagnostics;
21 using System.Runtime.InteropServices;
22 using Tizen.NUI.Accessibility;
23
24 namespace Tizen.NUI.Components
25 {
26     /// <summary>
27     /// ScrollEventArgs is a class to record scroll event arguments which will sent to user.
28     /// </summary>
29     /// <since_tizen> 8 </since_tizen>
30     [global::System.Diagnostics.CodeAnalysis.SuppressMessage("Design", "CA1001: Types that own disposable fields should be disposable.", Justification = "Scroll event is temporarily used for notifying scroll position update, so position will not be disposed during the event processing.")]
31     public class ScrollEventArgs : EventArgs
32     {
33         // Position class is derived class of Disposable class and they will be implicitly disposed by DisposeQueue,
34         // so that there will be no memory leak.
35         private Position position;
36         private Position scrollPosition;
37
38         /// <summary>
39         /// Default constructor.
40         /// </summary>
41         /// <param name="position">Current container position</param>
42         /// <since_tizen> 8 </since_tizen>
43         public ScrollEventArgs(Position position)
44         {
45             this.position = position;
46             this.scrollPosition = new Position(-position);
47         }
48
49         /// <summary>
50         /// Current position of ContentContainer.
51         /// </summary>
52         /// <since_tizen> 8 </since_tizen>
53         public Position Position
54         {
55             get
56             {
57                 return position;
58             }
59         }
60         /// <summary>
61         /// Current scroll position of scrollableBase pan.
62         /// This is the position in the opposite direction to the current position of ContentContainer.
63         /// </summary>
64         [EditorBrowsable(EditorBrowsableState.Never)]
65         public Position ScrollPosition
66         {
67             get
68             {
69                 return scrollPosition;
70             }
71         }
72     }
73
74     /// <summary>
75     /// ScrollOutofBoundEventArgs is to record scroll out-of-bound event arguments which will be sent to user.
76     /// </summary>
77     [EditorBrowsable(EditorBrowsableState.Never)]
78     public class ScrollOutOfBoundEventArgs : EventArgs
79     {
80         /// <summary>
81         /// The direction to be touched.
82         /// </summary>
83         [EditorBrowsable(EditorBrowsableState.Never)]
84         public enum Direction
85         {
86             /// <summary>
87             /// Upwards.
88             /// </summary>
89             [EditorBrowsable(EditorBrowsableState.Never)]
90             Up,
91
92             /// <summary>
93             /// Downwards.
94             /// </summary>
95             [EditorBrowsable(EditorBrowsableState.Never)]
96             Down,
97
98             /// <summary>
99             /// Left bound.
100             /// </summary>
101             [EditorBrowsable(EditorBrowsableState.Never)]
102             Left,
103
104             /// <summary>
105             /// Right bound.
106             /// </summary>
107             [EditorBrowsable(EditorBrowsableState.Never)]
108             Right,
109         }
110
111         /// <summary>
112         /// Constructor.
113         /// </summary>
114         /// <param name="direction">Current pan direction</param>
115         /// <param name="displacement">Current total displacement</param>
116         [EditorBrowsable(EditorBrowsableState.Never)]
117         public ScrollOutOfBoundEventArgs(Direction direction, float displacement)
118         {
119             PanDirection = direction;
120             Displacement = displacement;
121         }
122
123         /// <summary>
124         /// Current pan direction of ContentContainer.
125         /// </summary>
126         [EditorBrowsable(EditorBrowsableState.Never)]
127         public Direction PanDirection
128         {
129             get;
130         }
131
132         /// <summary>
133         /// Current total displacement of ContentContainer.
134         /// if its value is greater than 0, it is at the top/left;
135         /// if less than 0, it is at the bottom/right.
136         /// </summary>
137         [EditorBrowsable(EditorBrowsableState.Never)]
138         public float Displacement
139         {
140             get;
141         }
142     }
143
144     /// <summary>
145     /// This class provides a View that can scroll a single View with a layout. This View can be a nest of Views.
146     /// </summary>
147     /// <since_tizen> 8 </since_tizen>
148     public partial class ScrollableBase : Control
149     {
150         static bool LayoutDebugScrollableBase = false; // Debug flag
151         static bool focusDebugScrollableBase = false; // Debug flag
152         private Direction mScrollingDirection = Direction.Vertical;
153         private bool mScrollEnabled = true;
154         private int mScrollDuration = 125;
155         private int mPageWidth = 0;
156         private float mPageFlickThreshold = 0.4f;
157         private float mScrollingEventThreshold = 0.001f;
158         private bool fadeScrollbar = true;
159
160         private class ScrollableBaseCustomLayout : AbsoluteLayout
161         {
162             protected override void OnMeasure(MeasureSpecification widthMeasureSpec, MeasureSpecification heightMeasureSpec)
163             {
164                 MeasuredSize.StateType childWidthState = MeasuredSize.StateType.MeasuredSizeOK;
165                 MeasuredSize.StateType childHeightState = MeasuredSize.StateType.MeasuredSizeOK;
166
167                 Direction scrollingDirection = Direction.Vertical;
168                 ScrollableBase scrollableBase = this.Owner as ScrollableBase;
169                 if (scrollableBase != null)
170                 {
171                     scrollingDirection = scrollableBase.ScrollingDirection;
172                 }
173
174                 float totalWidth = 0.0f;
175                 float totalHeight = 0.0f;
176
177                 // measure child, should be a single scrolling child
178                 foreach (LayoutItem childLayout in LayoutChildren)
179                 {
180                     if (childLayout != null && childLayout.Owner.Name == "ContentContainer")
181                     {
182                         // Get size of child
183                         // Use an Unspecified MeasureSpecification mode so scrolling child is not restricted to it's parents size in Height (for vertical scrolling)
184                         // or Width for horizontal scrolling
185                         if (scrollingDirection == Direction.Vertical)
186                         {
187                             MeasureSpecification unrestrictedMeasureSpec = new MeasureSpecification(heightMeasureSpec.Size, MeasureSpecification.ModeType.Unspecified);
188                             MeasureChildWithMargins(childLayout, widthMeasureSpec, new LayoutLength(0), unrestrictedMeasureSpec, new LayoutLength(0)); // Height unrestricted by parent
189                         }
190                         else
191                         {
192                             MeasureSpecification unrestrictedMeasureSpec = new MeasureSpecification(widthMeasureSpec.Size, MeasureSpecification.ModeType.Unspecified);
193                             MeasureChildWithMargins(childLayout, unrestrictedMeasureSpec, new LayoutLength(0), heightMeasureSpec, new LayoutLength(0)); // Width unrestricted by parent
194                         }
195
196                         totalWidth = (childLayout.MeasuredWidth.Size + (childLayout.Padding.Start + childLayout.Padding.End)).AsDecimal();
197                         totalHeight = (childLayout.MeasuredHeight.Size + (childLayout.Padding.Top + childLayout.Padding.Bottom)).AsDecimal();
198
199                         if (childLayout.MeasuredWidth.State == MeasuredSize.StateType.MeasuredSizeTooSmall)
200                         {
201                             childWidthState = MeasuredSize.StateType.MeasuredSizeTooSmall;
202                         }
203                         if (childLayout.MeasuredHeight.State == MeasuredSize.StateType.MeasuredSizeTooSmall)
204                         {
205                             childHeightState = MeasuredSize.StateType.MeasuredSizeTooSmall;
206                         }
207                     }
208                 }
209
210                 MeasuredSize widthSizeAndState = ResolveSizeAndState(new LayoutLength(totalWidth), widthMeasureSpec, MeasuredSize.StateType.MeasuredSizeOK);
211                 MeasuredSize heightSizeAndState = ResolveSizeAndState(new LayoutLength(totalHeight), heightMeasureSpec, MeasuredSize.StateType.MeasuredSizeOK);
212                 totalWidth = widthSizeAndState.Size.AsDecimal();
213                 totalHeight = heightSizeAndState.Size.AsDecimal();
214
215                 // Ensure layout respects it's given minimum size
216                 totalWidth = Math.Max(totalWidth, SuggestedMinimumWidth.AsDecimal());
217                 totalHeight = Math.Max(totalHeight, SuggestedMinimumHeight.AsDecimal());
218
219                 widthSizeAndState.State = childWidthState;
220                 heightSizeAndState.State = childHeightState;
221
222                 SetMeasuredDimensions(ResolveSizeAndState(new LayoutLength(totalWidth), widthMeasureSpec, childWidthState),
223                     ResolveSizeAndState(new LayoutLength(totalHeight), heightMeasureSpec, childHeightState));
224
225                 // Size of ScrollableBase is changed. Change Page width too.
226                 if (scrollableBase != null)
227                 {
228                     scrollableBase.mPageWidth = (int)MeasuredWidth.Size.AsRoundedValue();
229                     scrollableBase.OnScrollingChildRelayout(null, null);
230                 }
231             }
232         } //  ScrollableBaseCustomLayout
233
234         /// <summary>
235         /// The direction axis to scroll.
236         /// </summary>
237         /// <since_tizen> 8 </since_tizen>
238         public enum Direction
239         {
240             /// <summary>
241             /// Horizontal axis.
242             /// </summary>
243             /// <since_tizen> 8 </since_tizen>
244             Horizontal,
245
246             /// <summary>
247             /// Vertical axis.
248             /// </summary>
249             /// <since_tizen> 8 </since_tizen>
250             Vertical
251         }
252
253         /// <summary>
254         /// Scrolling direction mode.
255         /// Default is Vertical scrolling.
256         /// </summary>
257         /// <since_tizen> 8 </since_tizen>
258         public Direction ScrollingDirection
259         {
260             get
261             {
262                 return (Direction)GetValue(ScrollingDirectionProperty);
263             }
264             set
265             {
266                 SetValue(ScrollingDirectionProperty, value);
267                 NotifyPropertyChanged();
268             }
269         }
270         private Direction InternalScrollingDirection
271         {
272             get
273             {
274                 return mScrollingDirection;
275             }
276             set
277             {
278                 if (value != mScrollingDirection)
279                 {
280                     //Reset scroll position and stop scroll animation
281                     ScrollTo(0, false);
282
283                     mScrollingDirection = value;
284                     mPanGestureDetector.ClearAngles();
285                     mPanGestureDetector.AddDirection(value == Direction.Horizontal ?
286                         PanGestureDetector.DirectionHorizontal : PanGestureDetector.DirectionVertical);
287
288                     ContentContainer.WidthSpecification = ScrollingDirection == Direction.Vertical ? LayoutParamPolicies.MatchParent : LayoutParamPolicies.WrapContent;
289                     ContentContainer.HeightSpecification = ScrollingDirection == Direction.Vertical ? LayoutParamPolicies.WrapContent : LayoutParamPolicies.MatchParent;
290                     SetScrollbar();
291                 }
292             }
293         }
294
295         /// <summary>
296         /// Enable or disable scrolling.
297         /// </summary>
298         /// <since_tizen> 8 </since_tizen>
299         public bool ScrollEnabled
300         {
301             get
302             {
303                 return (bool)GetValue(ScrollEnabledProperty);
304             }
305             set
306             {
307                 SetValue(ScrollEnabledProperty, value);
308                 NotifyPropertyChanged();
309             }
310         }
311         private bool InternalScrollEnabled
312         {
313             get
314             {
315                 return mScrollEnabled;
316             }
317             set
318             {
319                 if (value != mScrollEnabled)
320                 {
321                     mScrollEnabled = value;
322                     if (mScrollEnabled)
323                     {
324                         mPanGestureDetector.Detected += OnPanGestureDetected;
325                     }
326                     else
327                     {
328                         mPanGestureDetector.Detected -= OnPanGestureDetected;
329                     }
330                 }
331             }
332         }
333
334         /// <summary>
335         /// Gets scrollable status.
336         /// </summary>
337         [EditorBrowsable(EditorBrowsableState.Never)]
338         protected override bool AccessibilityIsScrollable()
339         {
340             return true;
341         }
342
343         /// <summary>
344         /// Pages mode, enables moving to the next or return to current page depending on pan displacement.
345         /// Default is false.
346         /// </summary>
347         /// <since_tizen> 8 </since_tizen>
348         public bool SnapToPage
349         {
350             get
351             {
352                 return (bool)GetValue(SnapToPageProperty);
353             }
354             set
355             {
356                 SetValue(SnapToPageProperty, value);
357                 NotifyPropertyChanged();
358             }
359         }
360         private bool InternalSnapToPage { set; get; } = false;
361
362         /// <summary>
363         /// Get current page.
364         /// Working property with SnapToPage property.
365         /// </summary>
366         /// <since_tizen> 8 </since_tizen>
367         public int CurrentPage { get; private set; } = 0;
368
369         /// <summary>
370         /// Duration of scroll animation.
371         /// Default value is 125ms.
372         /// </summary>
373         /// <since_tizen> 8 </since_tizen>
374         public int ScrollDuration
375         {
376             get
377             {
378                 return (int)GetValue(ScrollDurationProperty);
379             }
380             set
381             {
382                 SetValue(ScrollDurationProperty, value);
383                 NotifyPropertyChanged();
384             }
385         }
386         private int InternalScrollDuration
387         {
388             set
389             {
390                 mScrollDuration = value >= 0 ? value : mScrollDuration;
391             }
392             get
393             {
394                 return mScrollDuration;
395             }
396         }
397
398         /// <summary>
399         /// Scroll Available area.
400         /// </summary>
401         /// <since_tizen> 8 </since_tizen>
402         public Vector2 ScrollAvailableArea
403         {
404             get
405             {
406                 return GetValue(ScrollAvailableAreaProperty) as Vector2;
407             }
408             set
409             {
410                 SetValue(ScrollAvailableAreaProperty, value);
411                 NotifyPropertyChanged();
412             }
413         }
414         private Vector2 InternalScrollAvailableArea { set; get; }
415
416         /// <summary>
417         /// An event emitted when user starts dragging ScrollableBase, user can subscribe or unsubscribe to this event handler.<br />
418         /// </summary>
419         /// <since_tizen> 8 </since_tizen>
420         public event EventHandler<ScrollEventArgs> ScrollDragStarted;
421
422         /// <summary>
423         /// An event emitted when user stops dragging ScrollableBase, user can subscribe or unsubscribe to this event handler.<br />
424         /// </summary>
425         /// <since_tizen> 8 </since_tizen>
426         public event EventHandler<ScrollEventArgs> ScrollDragEnded;
427
428         /// <summary>
429         /// An event emitted when the scrolling slide animation starts, user can subscribe or unsubscribe to this event handler.<br />
430         /// </summary>
431         /// <since_tizen> 8 </since_tizen>
432         public event EventHandler<ScrollEventArgs> ScrollAnimationStarted;
433
434         /// <summary>
435         /// An event emitted when the scrolling slide animation ends, user can subscribe or unsubscribe to this event handler.<br />
436         /// </summary>
437         /// <since_tizen> 8 </since_tizen>
438         public event EventHandler<ScrollEventArgs> ScrollAnimationEnded;
439
440         /// <summary>
441         /// An event emitted when scrolling, user can subscribe or unsubscribe to this event handler.<br />
442         /// </summary>
443         /// <since_tizen> 8 </since_tizen>
444         public event EventHandler<ScrollEventArgs> Scrolling;
445
446         /// <summary>
447         /// An event emitted when scrolling out of bound, user can subscribe or unsubscribe to this event handler.<br />
448         /// </summary>
449         [EditorBrowsable(EditorBrowsableState.Never)]
450         public event EventHandler<ScrollOutOfBoundEventArgs> ScrollOutOfBound;
451
452         /// <summary>
453         /// Scrollbar for ScrollableBase.
454         /// </summary>
455         /// <since_tizen> 8 </since_tizen>
456         public ScrollbarBase Scrollbar
457         {
458             get
459             {
460                 return GetValue(ScrollbarProperty) as ScrollbarBase;
461             }
462             set
463             {
464                 SetValue(ScrollbarProperty, value);
465                 NotifyPropertyChanged();
466             }
467         }
468         private ScrollbarBase InternalScrollbar
469         {
470             get
471             {
472                 return scrollBar;
473             }
474             set
475             {
476                 if (scrollBar)
477                 {
478                     base.Remove(scrollBar);
479                 }
480                 scrollBar = value;
481
482                 if (scrollBar != null)
483                 {
484                     scrollBar.Name = "ScrollBar";
485                     base.Add(scrollBar);
486
487                     if (hideScrollbar)
488                     {
489                         scrollBar.Hide();
490                     }
491                     else
492                     {
493                         scrollBar.Show();
494                     }
495
496                     SetScrollbar();
497                 }
498             }
499         }
500
501         /// <summary>
502         /// Always hide Scrollbar.
503         /// </summary>
504         /// <since_tizen> 8 </since_tizen>
505         public bool HideScrollbar
506         {
507             get
508             {
509                 return (bool)GetValue(HideScrollbarProperty);
510             }
511             set
512             {
513                 SetValue(HideScrollbarProperty, value);
514                 NotifyPropertyChanged();
515             }
516         }
517         private bool InternalHideScrollbar
518         {
519             get
520             {
521                 return hideScrollbar;
522             }
523             set
524             {
525                 hideScrollbar = value;
526
527                 if (scrollBar)
528                 {
529                     if (value)
530                     {
531                         scrollBar.Hide();
532                     }
533                     else
534                     {
535                         scrollBar.Show();
536                         if (fadeScrollbar)
537                         {
538                             scrollBar.Opacity = 1.0f;
539                             scrollBar.FadeOut();
540                         }
541                     }
542                 }
543             }
544         }
545
546         /// <summary>
547         /// The boolean flag for automatic fading Scrollbar.
548         /// Scrollbar will be faded out when scroll stay in certain position longer than the threshold.
549         /// Scrollbar will be faded in scroll position changes.
550         /// </summary>
551         [EditorBrowsable(EditorBrowsableState.Never)]
552         public bool FadeScrollbar
553         {
554             get => (bool)GetValue(FadeScrollbarProperty);
555             set => SetValue(FadeScrollbarProperty, value);
556         }
557
558         private bool InternalFadeScrollbar
559         {
560             get
561             {
562                 return fadeScrollbar;
563             }
564             set
565             {
566                 fadeScrollbar = value;
567
568                 if (scrollBar != null && !hideScrollbar)
569                 {
570                     if (value)
571                     {
572                         scrollBar.FadeOut();
573                     }
574                     else
575                     {
576                         scrollBar.Opacity = 1.0f;
577                         // Removing fadeout timer and animation.
578                         scrollBar.FadeIn();
579                     }
580                 }
581             }
582         }
583
584         /// <summary>
585         /// Container which has content of ScrollableBase.
586         /// </summary>
587         /// <since_tizen> 8 </since_tizen>
588         public View ContentContainer { get; private set; }
589
590         /// <summary>
591         /// Set the layout on this View. Replaces any existing Layout.
592         /// </summary>
593         /// <since_tizen> 8 </since_tizen>
594         public new LayoutItem Layout
595         {
596             get
597             {
598                 return GetValue(LayoutProperty) as LayoutItem;
599             }
600             set
601             {
602                 SetValue(LayoutProperty, value);
603                 NotifyPropertyChanged();
604             }
605         }
606         private LayoutItem InternalLayout
607         {
608             get
609             {
610                 return ContentContainer.Layout;
611             }
612             set
613             {
614                 ContentContainer.Layout = value;
615             }
616         }
617
618         /// <summary>
619         /// List of children of Container.
620         /// </summary>
621         /// <since_tizen> 8 </since_tizen>
622         public new List<View> Children
623         {
624             get
625             {
626                 return ContentContainer.Children;
627             }
628         }
629
630         /// <summary>
631         /// Deceleration rate of scrolling by finger.
632         /// Rate should be bigger than 0 and smaller than 1.
633         /// Default value is 0.998f;
634         /// </summary>
635         /// <since_tizen> 8 </since_tizen>
636         public float DecelerationRate
637         {
638             get
639             {
640                 return (float)GetValue(DecelerationRateProperty);
641             }
642             set
643             {
644                 SetValue(DecelerationRateProperty, value);
645                 NotifyPropertyChanged();
646             }
647         }
648         private float InternalDecelerationRate
649         {
650             get
651             {
652                 return decelerationRate;
653             }
654             set
655             {
656                 decelerationRate = (value < 1 && value > 0) ? value : decelerationRate;
657                 logValueOfDeceleration = (float)Math.Log(value);
658             }
659         }
660
661         /// <summary>
662         /// Threshold not to go infinite at the end of scrolling animation.
663         /// </summary>
664         [EditorBrowsable(EditorBrowsableState.Never)]
665         public float DecelerationThreshold
666         {
667             get
668             {
669                 return (float)GetValue(DecelerationThresholdProperty);
670             }
671             set
672             {
673                 SetValue(DecelerationThresholdProperty, value);
674                 NotifyPropertyChanged();
675             }
676         }
677         private float InternalDecelerationThreshold { get; set; } = 0.1f;
678
679         /// <summary>
680         /// Scrolling event will be thrown when this amount of scroll position is changed.
681         /// If this threshold becomes smaller, the tracking detail increases but the scrolling range that can be tracked becomes smaller.
682         /// If large sized ContentContainer is required, please use larger threshold value.
683         /// Default ScrollingEventThreshold value is 0.001f.
684         /// </summary>
685         [EditorBrowsable(EditorBrowsableState.Never)]
686         public float ScrollingEventThreshold
687         {
688             get
689             {
690                 return (float)GetValue(ScrollingEventThresholdProperty);
691             }
692             set
693             {
694                 SetValue(ScrollingEventThresholdProperty, value);
695                 NotifyPropertyChanged();
696             }
697         }
698         private float InternalScrollingEventThreshold
699         {
700             get
701             {
702                 return mScrollingEventThreshold;
703             }
704             set
705             {
706                 if (mScrollingEventThreshold != value && value > 0)
707                 {
708                     ContentContainer.RemovePropertyNotification(propertyNotification);
709                     propertyNotification = ContentContainer.AddPropertyNotification("position", PropertyCondition.Step(value));
710                     propertyNotification.Notified += OnPropertyChanged;
711                     mScrollingEventThreshold = value;
712                 }
713             }
714         }
715
716         /// <summary>
717         /// Page will be changed when velocity of panning is over threshold.
718         /// The unit of threshold is pixel per millisecond.
719         /// </summary>
720         /// <since_tizen> 8 </since_tizen>
721         public float PageFlickThreshold
722         {
723             get
724             {
725                 return (float)GetValue(PageFlickThresholdProperty);
726             }
727             set
728             {
729                 SetValue(PageFlickThresholdProperty, value);
730                 NotifyPropertyChanged();
731             }
732         }
733         private float InternalPageFlickThreshold
734         {
735             get
736             {
737                 return mPageFlickThreshold;
738             }
739             set
740             {
741                 mPageFlickThreshold = value >= 0f ? value : mPageFlickThreshold;
742             }
743         }
744
745         /// <summary>
746         /// Padding for the ScrollableBase
747         /// </summary>
748         [EditorBrowsable(EditorBrowsableState.Never)]
749         public new Extents Padding
750         {
751             get
752             {
753                 return GetValue(PaddingProperty) as Extents;
754             }
755             set
756             {
757                 SetValue(PaddingProperty, value);
758                 NotifyPropertyChanged();
759             }
760         }
761         private Extents InternalPadding
762         {
763             get
764             {
765                 return ContentContainer.Padding;
766             }
767             set
768             {
769                 ContentContainer.Padding = value;
770             }
771         }
772
773         /// <summary>
774         /// Alphafunction for scroll animation.
775         /// </summary>
776         [EditorBrowsable(EditorBrowsableState.Never)]
777         public AlphaFunction ScrollAlphaFunction
778         {
779             get
780             {
781                 return GetValue(ScrollAlphaFunctionProperty) as AlphaFunction;
782             }
783             set
784             {
785                 SetValue(ScrollAlphaFunctionProperty, value);
786                 NotifyPropertyChanged();
787             }
788         }
789         private AlphaFunction InternalScrollAlphaFunction { get; set; } = new AlphaFunction(AlphaFunction.BuiltinFunctions.Linear);
790
791         private bool hideScrollbar = true;
792         private float maxScrollDistance;
793         private float childTargetPosition = 0.0f;
794         private PanGestureDetector mPanGestureDetector;
795         private ScrollbarBase scrollBar;
796         private bool scrolling = false;
797         private float ratioOfScreenWidthToCompleteScroll = 0.5f;
798         private float totalDisplacementForPan = 0.0f;
799         private Size previousContainerSize = new Size();
800         private Size previousSize = new Size();
801         private PropertyNotification propertyNotification;
802         private float noticeAnimationEndBeforePosition = 0.0f;
803         private bool readyToNotice = false;
804
805         /// <summary>
806         /// Notice before animation is finished.
807         /// </summary>
808         [EditorBrowsable(EditorBrowsableState.Never)]
809         // Let's consider more whether this needs to be set as protected.
810         public float NoticeAnimationEndBeforePosition
811         {
812             get
813             {
814                 return (float)GetValue(NoticeAnimationEndBeforePositionProperty);
815             }
816             set
817             {
818                 SetValue(NoticeAnimationEndBeforePositionProperty, value);
819                 NotifyPropertyChanged();
820             }
821         }
822         private float InternalNoticeAnimationEndBeforePosition
823         {
824             get => noticeAnimationEndBeforePosition;
825             set => noticeAnimationEndBeforePosition = value;
826         }
827
828         /// <summary>
829         /// Step scroll move distance.
830         /// Key focus originally moves focusable objects, but in ScrollableBase,
831         /// if focusable object is too far or un-exist and ScrollableBase is focusable,
832         /// it can scroll move itself by key input.
833         /// this value decide how long distance will it moves in one step.
834         /// if any value is not set, step will be moved quater size of ScrollableBase length.
835         /// </summary>
836         [EditorBrowsable(EditorBrowsableState.Never)]
837         public float StepScrollDistance
838         {
839             get
840             {
841                 return (float)GetValue(StepScrollDistanceProperty);
842             }
843             set
844             {
845                 SetValue(StepScrollDistanceProperty, value);
846                 NotifyPropertyChanged();
847             }
848         }
849         private float stepScrollDistance = 0f;
850
851
852         // Let's consider more whether this needs to be set as protected.
853         private float finalTargetPosition;
854
855         private Animation scrollAnimation;
856         // Declare user alpha function delegate
857         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
858         private delegate float UserAlphaFunctionDelegate(float progress);
859         private UserAlphaFunctionDelegate customScrollAlphaFunction;
860         private float velocityOfLastPan = 0.0f;
861         private float panAnimationDuration = 0.0f;
862         private float panAnimationDelta = 0.0f;
863         private float logValueOfDeceleration = 0.0f;
864         private float decelerationRate = 0.0f;
865
866         private View topOverShootingShadowView;
867         private View bottomOverShootingShadowView;
868         private View leftOverShootingShadowView;
869         private View rightOverShootingShadowView;
870         private const int overShootingShadowScaleHeightLimit = 64 * 3;
871         private const int overShootingShadowAnimationDuration = 300;
872         private Animation overShootingShadowAnimation;
873         private bool isOverShootingShadowShown = false;
874         private float startShowShadowDisplacement;
875
876         /// <summary>
877         /// Default Constructor
878         /// </summary>
879         /// <since_tizen> 8 </since_tizen>
880         public ScrollableBase() : base()
881         {
882             DecelerationRate = 0.998f;
883
884             base.Layout = new ScrollableBaseCustomLayout();
885             mPanGestureDetector = new PanGestureDetector();
886             mPanGestureDetector.Attach(this);
887             mPanGestureDetector.AddDirection(PanGestureDetector.DirectionVertical);
888             if (mPanGestureDetector.GetMaximumTouchesRequired() < 2) mPanGestureDetector.SetMaximumTouchesRequired(2);
889             mPanGestureDetector.Detected += OnPanGestureDetected;
890
891             ClippingMode = ClippingModeType.ClipToBoundingBox;
892
893             //Default Scrolling child
894             ContentContainer = new View()
895             {
896                 Name = "ContentContainer",
897                 WidthSpecification = ScrollingDirection == Direction.Vertical ? LayoutParamPolicies.MatchParent : LayoutParamPolicies.WrapContent,
898                 HeightSpecification = ScrollingDirection == Direction.Vertical ? LayoutParamPolicies.WrapContent : LayoutParamPolicies.MatchParent,
899             };
900             // Check if children's sizes change to update Scrollbar
901             ContentContainer.Relayout += OnScrollingChildRelayout;
902             propertyNotification = ContentContainer.AddPropertyNotification("position", PropertyCondition.Step(mScrollingEventThreshold));
903             propertyNotification.Notified += OnPropertyChanged;
904             base.Add(ContentContainer);
905             // Check if ScrollableBase's size changes to update Scrollbar
906             base.Relayout += OnScrollingChildRelayout;
907
908             Scrollbar = new Scrollbar();
909
910             //Show vertical shadow on the top (or bottom) of the scrollable when panning down (or up).
911             topOverShootingShadowView = new View
912             {
913                 BackgroundImage = FrameworkInformation.ResourcePath + "nui_component_default_scroll_over_shooting_top.png",
914                 Opacity = 1.0f,
915                 SizeHeight = 0.0f,
916                 PositionUsesPivotPoint = true,
917                 ParentOrigin = NUI.ParentOrigin.TopCenter,
918                 PivotPoint = NUI.PivotPoint.TopCenter,
919             };
920             bottomOverShootingShadowView = new View
921             {
922                 BackgroundImage = FrameworkInformation.ResourcePath + "nui_component_default_scroll_over_shooting_bottom.png",
923                 Opacity = 1.0f,
924                 SizeHeight = 0.0f,
925                 PositionUsesPivotPoint = true,
926                 ParentOrigin = NUI.ParentOrigin.BottomCenter,
927                 PivotPoint = NUI.PivotPoint.BottomCenter,
928             };
929             //Show horizontal shadow on the left (or right) of the scrollable when panning down (or up).
930             leftOverShootingShadowView = new View
931             {
932                 BackgroundImage = FrameworkInformation.ResourcePath + "nui_component_default_scroll_over_shooting_left.png",
933                 Opacity = 1.0f,
934                 SizeWidth = 0.0f,
935                 PositionUsesPivotPoint = true,
936                 ParentOrigin = NUI.ParentOrigin.CenterLeft,
937                 PivotPoint = NUI.PivotPoint.CenterLeft,
938             };
939             rightOverShootingShadowView = new View
940             {
941                 BackgroundImage = FrameworkInformation.ResourcePath + "nui_component_default_scroll_over_shooting_right.png",
942                 Opacity = 1.0f,
943                 SizeWidth = 0.0f,
944                 PositionUsesPivotPoint = true,
945                 ParentOrigin = NUI.ParentOrigin.CenterRight,
946                 PivotPoint = NUI.PivotPoint.CenterRight,
947             };
948
949             AccessibilityManager.Instance.SetAccessibilityAttribute(this, AccessibilityManager.AccessibilityAttribute.Trait, "ScrollableBase");
950
951             SetKeyboardNavigationSupport(true);
952         }
953
954         private bool OnInterruptTouchingChildTouched(object source, View.TouchEventArgs args)
955         {
956             if (args.Touch.GetState(0) == PointStateType.Down)
957             {
958                 if (scrolling && !SnapToPage)
959                 {
960                     StopScroll();
961                 }
962             }
963             return true;
964         }
965
966         private void OnPropertyChanged(object source, PropertyNotification.NotifyEventArgs args)
967         {
968             OnScroll();
969         }
970
971         /// <summary>
972         /// Called after a child has been added to the owning view.
973         /// </summary>
974         /// <param name="view">The child which has been added.</param>
975         /// <since_tizen> 8 </since_tizen>
976         public override void Add(View view)
977         {
978             ContentContainer.Add(view);
979         }
980
981         /// <summary>
982         /// Called after a child has been removed from the owning view.
983         /// </summary>
984         /// <param name="view">The child which has been removed.</param>
985         /// <since_tizen> 8 </since_tizen>
986         public override void Remove(View view)
987         {
988             if (SnapToPage && CurrentPage == Children.IndexOf(view) && CurrentPage == Children.Count - 1 && Children.Count > 1)
989             {
990                 // Target View is current page and also last child.
991                 // CurrentPage should be changed to previous page.
992                 ScrollToIndex(CurrentPage - 1);
993             }
994
995             ContentContainer.Remove(view);
996         }
997
998         private void OnScrollingChildRelayout(object source, EventArgs args)
999         {
1000             // Size is changed. Calculate maxScrollDistance.
1001             bool isSizeChanged = previousContainerSize.Width != ContentContainer.Size.Width || previousContainerSize.Height != ContentContainer.Size.Height ||
1002                 previousSize.Width != Size.Width || previousSize.Height != Size.Height;
1003
1004             if (isSizeChanged)
1005             {
1006                 maxScrollDistance = CalculateMaximumScrollDistance();
1007                 if (!ReviseContainerPositionIfNeed())
1008                 {
1009                     UpdateScrollbar();
1010                 }
1011             }
1012
1013             previousContainerSize = new Size(ContentContainer.Size);
1014             previousSize = new Size(Size);
1015         }
1016
1017         private bool ReviseContainerPositionIfNeed()
1018         {
1019             bool isHorizontal = ScrollingDirection == Direction.Horizontal;
1020             float currentPosition = isHorizontal ? ContentContainer.CurrentPosition.X : ContentContainer.CurrentPosition.Y;
1021
1022             if (Math.Abs(currentPosition) > maxScrollDistance)
1023             {
1024                 StopScroll();
1025                 var targetPosition = BoundScrollPosition(-maxScrollDistance);
1026                 if (isHorizontal) ContentContainer.PositionX = targetPosition;
1027                 else ContentContainer.PositionY = targetPosition;
1028                 return true;
1029             }
1030
1031             return false;
1032         }
1033
1034         /// <summary>
1035         /// The composition of a Scrollbar can vary depending on how you use ScrollableBase.
1036         /// Set the composition that will go into the ScrollableBase according to your ScrollableBase.
1037         /// </summary>
1038         /// <since_tizen> 8 </since_tizen>
1039         [EditorBrowsable(EditorBrowsableState.Never)]
1040         protected virtual void SetScrollbar()
1041         {
1042             if (Scrollbar)
1043             {
1044                 bool isHorizontal = ScrollingDirection == Direction.Horizontal;
1045                 float contentLength = isHorizontal ? ContentContainer.Size.Width : ContentContainer.Size.Height;
1046                 float viewportLength = isHorizontal ? Size.Width : Size.Height;
1047                 float currentPosition = isHorizontal ? ContentContainer.CurrentPosition.X : ContentContainer.CurrentPosition.Y;
1048                 Scrollbar.Initialize(contentLength, viewportLength, -currentPosition, isHorizontal);
1049             }
1050         }
1051
1052         /// Update scrollbar position and size.
1053         [EditorBrowsable(EditorBrowsableState.Never)]
1054         protected virtual void UpdateScrollbar()
1055         {
1056             if (Scrollbar)
1057             {
1058                 bool isHorizontal = ScrollingDirection == Direction.Horizontal;
1059                 float contentLength = isHorizontal ? ContentContainer.Size.Width : ContentContainer.Size.Height;
1060                 float viewportLength = isHorizontal ? Size.Width : Size.Height;
1061                 float currentPosition = isHorizontal ? ContentContainer.CurrentPosition.X : ContentContainer.CurrentPosition.Y;
1062                 Scrollbar.Update(contentLength, viewportLength, -currentPosition);
1063
1064                 if (!hideScrollbar && fadeScrollbar)
1065                 {
1066                     Scrollbar.FadeOut();
1067                 }
1068             }
1069         }
1070
1071         /// <summary>
1072         /// Scrolls to the item at the specified index.
1073         /// </summary>
1074         /// <param name="index">Index of item.</param>
1075         /// <since_tizen> 8 </since_tizen>
1076         public void ScrollToIndex(int index)
1077         {
1078             if (ContentContainer.ChildCount - 1 < index || index < 0)
1079             {
1080                 return;
1081             }
1082
1083             if (SnapToPage)
1084             {
1085                 CurrentPage = index;
1086             }
1087
1088             float targetPosition = Math.Min(ScrollingDirection == Direction.Vertical ? Children[index].Position.Y : Children[index].Position.X, maxScrollDistance);
1089             AnimateChildTo(ScrollDuration, -targetPosition);
1090         }
1091
1092         internal void ScrollToChild(View child, bool anim = false)
1093         {
1094             if (null == FindDescendantByID(child.ID)) return;
1095
1096             bool isHorizontal = (ScrollingDirection == Direction.Horizontal);
1097
1098             float viewScreenPosition = (isHorizontal? ScreenPosition.X : ScreenPosition.Y);
1099             float childScreenPosition = (isHorizontal? child.ScreenPosition.X : child.ScreenPosition.Y);
1100             float scrollPosition = (isHorizontal? ScrollPosition.X : ScrollPosition.Y);
1101             float viewSize = (isHorizontal? SizeWidth : SizeHeight);
1102             float childSize = (isHorizontal? child.SizeWidth : child.SizeHeight);
1103
1104             if (viewScreenPosition > childScreenPosition ||
1105                 viewScreenPosition + viewSize < childScreenPosition + childSize)
1106             {// if object is outside
1107                 float targetPosition;
1108                 float dist = viewScreenPosition - childScreenPosition;
1109                 if (dist > 0)
1110                 {// if object is upper side
1111                     targetPosition = scrollPosition - dist;
1112                 }
1113                 else
1114                 {// if object is down side
1115                     targetPosition = scrollPosition - dist + childSize - viewSize;
1116                 }
1117                 ScrollTo(targetPosition, anim);
1118             }
1119         }
1120
1121         private void OnScrollDragStarted()
1122         {
1123             ScrollEventArgs eventArgs = new ScrollEventArgs(ContentContainer.CurrentPosition);
1124             ScrollDragStarted?.Invoke(this, eventArgs);
1125
1126             if (!hideScrollbar && fadeScrollbar)
1127             {
1128                 scrollBar?.FadeIn();
1129             }
1130         }
1131
1132         private void OnScrollDragEnded()
1133         {
1134             ScrollEventArgs eventArgs = new ScrollEventArgs(ContentContainer.CurrentPosition);
1135             ScrollDragEnded?.Invoke(this, eventArgs);
1136
1137             if (!hideScrollbar && fadeScrollbar)
1138             {
1139                 scrollBar?.FadeOut();
1140             }
1141         }
1142
1143         private void OnScrollAnimationStarted()
1144         {
1145             ScrollEventArgs eventArgs = new ScrollEventArgs(ContentContainer.CurrentPosition);
1146             ScrollAnimationStarted?.Invoke(this, eventArgs);
1147
1148             if (!hideScrollbar && fadeScrollbar)
1149             {
1150                 scrollBar?.FadeIn();
1151             }
1152         }
1153
1154         private void OnScrollAnimationEnded()
1155         {
1156             scrolling = false;
1157             this.InterceptTouchEvent -= OnInterruptTouchingChildTouched;
1158
1159             ScrollEventArgs eventArgs = new ScrollEventArgs(ContentContainer.CurrentPosition);
1160             ScrollAnimationEnded?.Invoke(this, eventArgs);
1161
1162             if (!hideScrollbar && fadeScrollbar)
1163             {
1164                 scrollBar?.FadeOut();
1165             }
1166         }
1167
1168         private void OnScroll()
1169         {
1170             ScrollEventArgs eventArgs = new ScrollEventArgs(ContentContainer.CurrentPosition);
1171             Scrolling?.Invoke(this, eventArgs);
1172
1173             bool isHorizontal = ScrollingDirection == Direction.Horizontal;
1174             float contentLength = isHorizontal ? ContentContainer.Size.Width : ContentContainer.Size.Height;
1175             float currentPosition = isHorizontal ? ContentContainer.CurrentPosition.X : ContentContainer.CurrentPosition.Y;
1176
1177             scrollBar?.Update(contentLength, Math.Abs(currentPosition));
1178             CheckPreReachedTargetPosition();
1179         }
1180
1181         private void CheckPreReachedTargetPosition()
1182         {
1183             // Check whether we reached pre-reached target position
1184             if (readyToNotice &&
1185                 ContentContainer.CurrentPosition.Y <= finalTargetPosition + NoticeAnimationEndBeforePosition &&
1186                 ContentContainer.CurrentPosition.Y >= finalTargetPosition - NoticeAnimationEndBeforePosition)
1187             {
1188                 //Notice first
1189                 readyToNotice = false;
1190                 OnPreReachedTargetPosition(finalTargetPosition);
1191             }
1192         }
1193
1194         /// <summary>
1195         /// This helps developer who wants to know before scroll is reaching target position.
1196         /// </summary>
1197         /// <param name="targetPosition">Index of item.</param>
1198         /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API
1199         [EditorBrowsable(EditorBrowsableState.Never)]
1200         protected virtual void OnPreReachedTargetPosition(float targetPosition)
1201         {
1202
1203         }
1204
1205         private void StopScroll()
1206         {
1207             if (scrollAnimation != null)
1208             {
1209                 if (scrollAnimation.State == Animation.States.Playing)
1210                 {
1211                     Debug.WriteLineIf(LayoutDebugScrollableBase, "StopScroll Animation Playing");
1212                     scrollAnimation.Stop(Animation.EndActions.Cancel);
1213                     OnScrollAnimationEnded();
1214                 }
1215                 scrollAnimation.Clear();
1216             }
1217         }
1218
1219         private void AnimateChildTo(int duration, float axisPosition)
1220         {
1221             Debug.WriteLineIf(LayoutDebugScrollableBase, "AnimationTo Animation Duration:" + duration + " Destination:" + axisPosition);
1222             finalTargetPosition = axisPosition;
1223
1224             StopScroll(); // Will replace previous animation so will stop existing one.
1225
1226             if (scrollAnimation == null)
1227             {
1228                 scrollAnimation = new Animation();
1229                 scrollAnimation.Finished += ScrollAnimationFinished;
1230             }
1231
1232             scrollAnimation.Duration = duration;
1233             scrollAnimation.DefaultAlphaFunction = new AlphaFunction(AlphaFunction.BuiltinFunctions.EaseOutSquare);
1234             scrollAnimation.AnimateTo(ContentContainer, (ScrollingDirection == Direction.Horizontal) ? "PositionX" : "PositionY", axisPosition, ScrollAlphaFunction);
1235             scrolling = true;
1236             OnScrollAnimationStarted();
1237             scrollAnimation.Play();
1238         }
1239
1240         /// <summary>
1241         /// Scroll to specific position with or without animation.
1242         /// </summary>
1243         /// <param name="position">Destination.</param>
1244         /// <param name="animate">Scroll with or without animation</param>
1245         /// <since_tizen> 8 </since_tizen>
1246         public void ScrollTo(float position, bool animate)
1247         {
1248             StopScroll();
1249             float currentPositionX = ContentContainer.CurrentPosition.X != 0 ? ContentContainer.CurrentPosition.X : ContentContainer.Position.X;
1250             float currentPositionY = ContentContainer.CurrentPosition.Y != 0 ? ContentContainer.CurrentPosition.Y : ContentContainer.Position.Y;
1251             float delta = ScrollingDirection == Direction.Horizontal ? currentPositionX : currentPositionY;
1252             // The argument position is the new pan position. So the new position of ScrollableBase becomes (-position).
1253             // To move ScrollableBase's position to (-position), it moves by (-position - currentPosition).
1254             delta = -position - delta;
1255
1256             ScrollBy(delta, animate);
1257         }
1258
1259         private float BoundScrollPosition(float targetPosition)
1260         {
1261             if (ScrollAvailableArea != null)
1262             {
1263                 float minScrollPosition = ScrollAvailableArea.X;
1264                 float maxScrollPosition = ScrollAvailableArea.Y;
1265
1266                 targetPosition = Math.Min(-minScrollPosition, targetPosition);
1267                 targetPosition = Math.Max(-maxScrollPosition, targetPosition);
1268             }
1269             else
1270             {
1271                 targetPosition = Math.Min(0, targetPosition);
1272                 targetPosition = Math.Max(-maxScrollDistance, targetPosition);
1273             }
1274
1275             return targetPosition;
1276         }
1277
1278         private void ScrollBy(float displacement, bool animate)
1279         {
1280             if (GetChildCount() == 0 || maxScrollDistance < 0)
1281             {
1282                 return;
1283             }
1284
1285             float childCurrentPosition = (ScrollingDirection == Direction.Horizontal) ? ContentContainer.PositionX : ContentContainer.PositionY;
1286
1287             Debug.WriteLineIf(LayoutDebugScrollableBase, "ScrollBy childCurrentPosition:" + childCurrentPosition +
1288                 " displacement:" + displacement,
1289                 " maxScrollDistance:" + maxScrollDistance);
1290
1291             childTargetPosition = childCurrentPosition + displacement; // child current position + gesture displacement
1292
1293             Debug.WriteLineIf(LayoutDebugScrollableBase, "ScrollBy currentAxisPosition:" + childCurrentPosition + "childTargetPosition:" + childTargetPosition);
1294
1295             if (animate)
1296             {
1297                 // Calculate scroll animation duration
1298                 float scrollDistance = Math.Abs(displacement);
1299                 readyToNotice = true;
1300
1301                 AnimateChildTo(ScrollDuration, BoundScrollPosition(AdjustTargetPositionOfScrollAnimation(BoundScrollPosition(childTargetPosition))));
1302             }
1303             else
1304             {
1305                 StopScroll();
1306                 finalTargetPosition = BoundScrollPosition(childTargetPosition);
1307
1308                 // Set position of scrolling child without an animation
1309                 if (ScrollingDirection == Direction.Horizontal)
1310                 {
1311                     ContentContainer.PositionX = finalTargetPosition;
1312                 }
1313                 else
1314                 {
1315                     ContentContainer.PositionY = finalTargetPosition;
1316                 }
1317             }
1318         }
1319
1320         /// <summary>
1321         /// you can override it to clean-up your own resources.
1322         /// </summary>
1323         /// <param name="type">DisposeTypes</param>
1324         /// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API.
1325         [EditorBrowsable(EditorBrowsableState.Never)]
1326         protected override void Dispose(DisposeTypes type)
1327         {
1328             if (disposed)
1329             {
1330                 return;
1331             }
1332
1333             if (type == DisposeTypes.Explicit)
1334             {
1335                 StopOverShootingShadowAnimation();
1336                 StopScroll();
1337
1338                 if (mPanGestureDetector != null)
1339                 {
1340                     mPanGestureDetector.Detected -= OnPanGestureDetected;
1341                     mPanGestureDetector.Dispose();
1342                     mPanGestureDetector = null;
1343                 }
1344
1345                 propertyNotification.Dispose();
1346             }
1347             base.Dispose(type);
1348         }
1349
1350         private float CalculateMaximumScrollDistance()
1351         {
1352             float scrollingChildLength = 0;
1353             float scrollerLength = 0;
1354             if (ScrollingDirection == Direction.Horizontal)
1355             {
1356                 Debug.WriteLineIf(LayoutDebugScrollableBase, "Horizontal");
1357
1358                 scrollingChildLength = ContentContainer.Size.Width;
1359                 scrollerLength = Size.Width;
1360             }
1361             else
1362             {
1363                 Debug.WriteLineIf(LayoutDebugScrollableBase, "Vertical");
1364                 scrollingChildLength = ContentContainer.Size.Height;
1365                 scrollerLength = Size.Height;
1366             }
1367
1368             Debug.WriteLineIf(LayoutDebugScrollableBase, "ScrollBy maxScrollDistance:" + (scrollingChildLength - scrollerLength) +
1369                 " parent length:" + scrollerLength +
1370                 " scrolling child length:" + scrollingChildLength);
1371
1372             return Math.Max(scrollingChildLength - scrollerLength, 0);
1373         }
1374
1375         private void PageSnap(float velocity)
1376         {
1377             float destination;
1378
1379             Debug.WriteLineIf(LayoutDebugScrollableBase, "PageSnap with pan candidate totalDisplacement:" + totalDisplacementForPan +
1380                 " currentPage[" + CurrentPage + "]");
1381
1382             //Increment current page if total displacement enough to warrant a page change.
1383             if (Math.Abs(totalDisplacementForPan) > (mPageWidth * ratioOfScreenWidthToCompleteScroll))
1384             {
1385                 if (totalDisplacementForPan < 0)
1386                 {
1387                     CurrentPage = Math.Min(Math.Max(Children.Count - 1, 0), ++CurrentPage);
1388                 }
1389                 else
1390                 {
1391                     CurrentPage = Math.Max(0, --CurrentPage);
1392                 }
1393             }
1394             else if (Math.Abs(velocity) > PageFlickThreshold)
1395             {
1396                 if (velocity < 0)
1397                 {
1398                     CurrentPage = Math.Min(Math.Max(Children.Count - 1, 0), ++CurrentPage);
1399                 }
1400                 else
1401                 {
1402                     CurrentPage = Math.Max(0, --CurrentPage);
1403                 }
1404             }
1405
1406             // Animate to new page or reposition to current page
1407             if (ScrollingDirection == Direction.Horizontal)
1408                 destination = -(Children[CurrentPage].Position.X + Children[CurrentPage].CurrentSize.Width / 2 - CurrentSize.Width / 2); // set to middle of current page
1409             else
1410                 destination = -(Children[CurrentPage].Position.Y + Children[CurrentPage].CurrentSize.Height / 2 - CurrentSize.Height / 2);
1411
1412             AnimateChildTo(ScrollDuration, destination);
1413         }
1414
1415         /// <summary>
1416         /// Enable/Disable overshooting effect. default is disabled.
1417         /// </summary>
1418         [EditorBrowsable(EditorBrowsableState.Never)]
1419         public bool EnableOverShootingEffect
1420         {
1421             get
1422             {
1423                 return (bool)GetValue(EnableOverShootingEffectProperty);
1424             }
1425             set
1426             {
1427                 SetValue(EnableOverShootingEffectProperty, value);
1428                 NotifyPropertyChanged();
1429             }
1430         }
1431         private bool InternalEnableOverShootingEffect { get; set; } = false;
1432
1433         private void AttachOverShootingShadowView()
1434         {
1435             if (!EnableOverShootingEffect)
1436                 return;
1437
1438             // stop animation if necessary.
1439             StopOverShootingShadowAnimation();
1440
1441             if (ScrollingDirection == Direction.Horizontal)
1442             {
1443                 base.Add(leftOverShootingShadowView);
1444                 base.Add(rightOverShootingShadowView);
1445
1446                 leftOverShootingShadowView.Size = new Size(0.0f, SizeHeight);
1447                 leftOverShootingShadowView.Opacity = 1.0f;
1448                 leftOverShootingShadowView.RaiseToTop();
1449
1450                 rightOverShootingShadowView.Size = new Size(0.0f, SizeHeight);
1451                 rightOverShootingShadowView.Opacity = 1.0f;
1452                 rightOverShootingShadowView.RaiseToTop();
1453             }
1454             else
1455             {
1456                 base.Add(topOverShootingShadowView);
1457                 base.Add(bottomOverShootingShadowView);
1458
1459                 topOverShootingShadowView.Size = new Size(SizeWidth, 0.0f);
1460                 topOverShootingShadowView.Opacity = 1.0f;
1461                 topOverShootingShadowView.RaiseToTop();
1462
1463                 bottomOverShootingShadowView.Size = new Size(SizeWidth, 0.0f);
1464                 bottomOverShootingShadowView.Opacity = 1.0f;
1465                 bottomOverShootingShadowView.RaiseToTop();
1466             }
1467
1468             // at the beginning, height or width of overshooting shadow is 0, so it is invisible.
1469             isOverShootingShadowShown = false;
1470         }
1471
1472         private void DragOverShootingShadow(float totalPanDisplacement, float panDisplacement)
1473         {
1474             if (!EnableOverShootingEffect)
1475                 return;
1476
1477             if (totalPanDisplacement > 0) // downwards
1478             {
1479                 // check if reaching at the top / left.
1480                 if ((int)finalTargetPosition != 0)
1481                 {
1482                     isOverShootingShadowShown = false;
1483                     return;
1484                 }
1485
1486                 // save start displacement, and re-calculate displacement.
1487                 if (!isOverShootingShadowShown)
1488                 {
1489                     startShowShadowDisplacement = totalPanDisplacement;
1490                 }
1491                 isOverShootingShadowShown = true;
1492
1493                 float newDisplacement = (int)totalPanDisplacement < (int)startShowShadowDisplacement ? 0 : totalPanDisplacement - startShowShadowDisplacement;
1494
1495                 if (ScrollingDirection == Direction.Horizontal)
1496                 {
1497                     // scale limit of height is 60%.
1498                     float heightScale = newDisplacement / overShootingShadowScaleHeightLimit;
1499                     leftOverShootingShadowView.SizeHeight = heightScale > 0.6f ? SizeHeight * 0.4f : SizeHeight * (1.0f - heightScale);
1500
1501                     // scale limit of width is 300%.
1502                     leftOverShootingShadowView.SizeWidth = newDisplacement > overShootingShadowScaleHeightLimit ? overShootingShadowScaleHeightLimit : newDisplacement;
1503
1504                     // trigger event
1505                     ScrollOutOfBoundEventArgs.Direction scrollDirection = panDisplacement > 0 ?
1506                        ScrollOutOfBoundEventArgs.Direction.Right : ScrollOutOfBoundEventArgs.Direction.Left;
1507                     OnScrollOutOfBound(scrollDirection, totalPanDisplacement);
1508                 }
1509                 else
1510                 {
1511                     // scale limit of width is 60%.
1512                     float widthScale = newDisplacement / overShootingShadowScaleHeightLimit;
1513                     topOverShootingShadowView.SizeWidth = widthScale > 0.6f ? SizeWidth * 0.4f : SizeWidth * (1.0f - widthScale);
1514
1515                     // scale limit of height is 300%.
1516                     topOverShootingShadowView.SizeHeight = newDisplacement > overShootingShadowScaleHeightLimit ? overShootingShadowScaleHeightLimit : newDisplacement;
1517
1518                     // trigger event
1519                     ScrollOutOfBoundEventArgs.Direction scrollDirection = panDisplacement > 0 ?
1520                        ScrollOutOfBoundEventArgs.Direction.Down : ScrollOutOfBoundEventArgs.Direction.Up;
1521                     OnScrollOutOfBound(scrollDirection, totalPanDisplacement);
1522                 }
1523             }
1524             else if (totalPanDisplacement < 0) // upwards
1525             {
1526                 // check if reaching at the bottom.
1527                 if (-(int)finalTargetPosition != (int)maxScrollDistance)
1528                 {
1529                     isOverShootingShadowShown = false;
1530                     return;
1531                 }
1532
1533                 // save start displacement, and re-calculate displacement.
1534                 if (!isOverShootingShadowShown)
1535                 {
1536                     startShowShadowDisplacement = totalPanDisplacement;
1537                 }
1538                 isOverShootingShadowShown = true;
1539
1540                 float newDisplacement = (int)startShowShadowDisplacement < (int)totalPanDisplacement ? 0 : startShowShadowDisplacement - totalPanDisplacement;
1541
1542                 if (ScrollingDirection == Direction.Horizontal)
1543                 {
1544                     // scale limit of height is 60%.
1545                     float heightScale = newDisplacement / overShootingShadowScaleHeightLimit;
1546                     rightOverShootingShadowView.SizeHeight = heightScale > 0.6f ? SizeHeight * 0.4f : SizeHeight * (1.0f - heightScale);
1547
1548                     // scale limit of width is 300%.
1549                     rightOverShootingShadowView.SizeWidth = newDisplacement > overShootingShadowScaleHeightLimit ? overShootingShadowScaleHeightLimit : newDisplacement;
1550
1551                     // trigger event
1552                     ScrollOutOfBoundEventArgs.Direction scrollDirection = panDisplacement > 0 ?
1553                        ScrollOutOfBoundEventArgs.Direction.Right : ScrollOutOfBoundEventArgs.Direction.Left;
1554                     OnScrollOutOfBound(scrollDirection, totalPanDisplacement);
1555                 }
1556                 else
1557                 {
1558                     // scale limit of width is 60%.
1559                     float widthScale = newDisplacement / overShootingShadowScaleHeightLimit;
1560                     bottomOverShootingShadowView.SizeWidth = widthScale > 0.6f ? SizeWidth * 0.4f : SizeWidth * (1.0f - widthScale);
1561
1562                     // scale limit of height is 300%.
1563                     bottomOverShootingShadowView.SizeHeight = newDisplacement > overShootingShadowScaleHeightLimit ? overShootingShadowScaleHeightLimit : newDisplacement;
1564
1565                     // trigger event
1566                     ScrollOutOfBoundEventArgs.Direction scrollDirection = panDisplacement > 0 ?
1567                        ScrollOutOfBoundEventArgs.Direction.Down : ScrollOutOfBoundEventArgs.Direction.Up;
1568                     OnScrollOutOfBound(scrollDirection, totalPanDisplacement);
1569                 }
1570             }
1571             else
1572             {
1573                 // if total displacement is 0, shadow would become invisible.
1574                 isOverShootingShadowShown = false;
1575             }
1576         }
1577
1578         private void PlayOverShootingShadowAnimation()
1579         {
1580             if (!EnableOverShootingEffect)
1581                 return;
1582
1583             // stop animation if necessary.
1584             StopOverShootingShadowAnimation();
1585
1586             if (overShootingShadowAnimation == null)
1587             {
1588                 overShootingShadowAnimation = new Animation(overShootingShadowAnimationDuration);
1589                 overShootingShadowAnimation.Finished += OnOverShootingShadowAnimationFinished;
1590             }
1591
1592             if (ScrollingDirection == Direction.Horizontal)
1593             {
1594                 View targetView = totalDisplacementForPan < 0 ? rightOverShootingShadowView : leftOverShootingShadowView;
1595                 overShootingShadowAnimation.AnimateTo(targetView, "SizeHeight", SizeHeight);
1596                 overShootingShadowAnimation.AnimateTo(targetView, "SizeWidth", 0.0f);
1597                 overShootingShadowAnimation.AnimateTo(targetView, "Opacity", 0.0f);
1598             }
1599             else
1600             {
1601                 View targetView = totalDisplacementForPan < 0 ? bottomOverShootingShadowView : topOverShootingShadowView;
1602                 overShootingShadowAnimation.AnimateTo(targetView, "SizeWidth", SizeWidth);
1603                 overShootingShadowAnimation.AnimateTo(targetView, "SizeHeight", 0.0f);
1604                 overShootingShadowAnimation.AnimateTo(targetView, "Opacity", 0.0f);
1605             }
1606             overShootingShadowAnimation.Play();
1607         }
1608
1609         private void StopOverShootingShadowAnimation()
1610         {
1611             if (overShootingShadowAnimation == null || overShootingShadowAnimation.State != Animation.States.Playing)
1612                 return;
1613
1614             overShootingShadowAnimation.Stop(Animation.EndActions.Cancel);
1615             OnOverShootingShadowAnimationFinished(null, null);
1616             overShootingShadowAnimation.Clear();
1617         }
1618
1619         private void OnOverShootingShadowAnimationFinished(object sender, EventArgs e)
1620         {
1621             if (ScrollingDirection == Direction.Horizontal)
1622             {
1623                 base.Remove(leftOverShootingShadowView);
1624                 base.Remove(rightOverShootingShadowView);
1625
1626                 leftOverShootingShadowView.Size = new Size(0.0f, SizeHeight);
1627                 rightOverShootingShadowView.Size = new Size(0.0f, SizeHeight);
1628             }
1629             else
1630             {
1631                 base.Remove(topOverShootingShadowView);
1632                 base.Remove(bottomOverShootingShadowView);
1633
1634                 topOverShootingShadowView.Size = new Size(SizeWidth, 0.0f);
1635                 bottomOverShootingShadowView.Size = new Size(SizeWidth, 0.0f);
1636             }
1637
1638             // after animation finished, height/width & opacity of vertical shadow both are 0, so it is invisible.
1639             isOverShootingShadowShown = false;
1640         }
1641
1642         private void OnScrollOutOfBound(ScrollOutOfBoundEventArgs.Direction direction, float displacement)
1643         {
1644             ScrollOutOfBoundEventArgs args = new ScrollOutOfBoundEventArgs(direction, displacement);
1645             ScrollOutOfBound?.Invoke(this, args);
1646         }
1647
1648         private void OnPanGestureDetected(object source, PanGestureDetector.DetectedEventArgs e)
1649         {
1650             e.Handled = OnPanGesture(e.PanGesture);
1651         }
1652
1653         private bool OnPanGesture(PanGesture panGesture)
1654         {
1655             bool handled = true;
1656             if (SnapToPage && scrollAnimation != null && scrollAnimation.State == Animation.States.Playing)
1657             {
1658                 return handled;
1659             }
1660             if (panGesture.State == Gesture.StateType.Started)
1661             {
1662                 readyToNotice = false;
1663                 AttachOverShootingShadowView();
1664                 Debug.WriteLineIf(LayoutDebugScrollableBase, "Gesture Start");
1665                 if (scrolling && !SnapToPage)
1666                 {
1667                     StopScroll();
1668                 }
1669                 totalDisplacementForPan = 0.0f;
1670
1671                 // check if gesture need to propagation
1672                 var checkDisplacement = (ScrollingDirection == Direction.Horizontal) ? panGesture.Displacement.X : panGesture.Displacement.Y;
1673                 var checkChildCurrentPosition = (ScrollingDirection == Direction.Horizontal) ? ContentContainer.PositionX : ContentContainer.PositionY;
1674                 var checkChildTargetPosition = checkChildCurrentPosition + checkDisplacement;
1675                 var checkFinalTargetPosition = BoundScrollPosition(checkChildTargetPosition);
1676                 handled = !((int)checkFinalTargetPosition == 0 || -(int)checkFinalTargetPosition == (int)maxScrollDistance);
1677                 // If you propagate a gesture event, return;
1678                 if(!handled)
1679                 {
1680                     return handled;
1681                 }
1682
1683                 //Interrupt touching when panning is started
1684                 this.InterceptTouchEvent += OnInterruptTouchingChildTouched;
1685                 OnScrollDragStarted();
1686             }
1687             else if (panGesture.State == Gesture.StateType.Continuing)
1688             {
1689                 if (ScrollingDirection == Direction.Horizontal)
1690                 {
1691                     // if vertical shadow is shown, does not scroll.
1692                     if (!isOverShootingShadowShown)
1693                     {
1694                         ScrollBy(panGesture.Displacement.X, false);
1695                     }
1696                     totalDisplacementForPan += panGesture.Displacement.X;
1697                     DragOverShootingShadow(totalDisplacementForPan, panGesture.Displacement.X);
1698                 }
1699                 else
1700                 {
1701                     // if vertical shadow is shown, does not scroll.
1702                     if (!isOverShootingShadowShown)
1703                     {
1704                         ScrollBy(panGesture.Displacement.Y, false);
1705                     }
1706                     totalDisplacementForPan += panGesture.Displacement.Y;
1707                     DragOverShootingShadow(totalDisplacementForPan, panGesture.Displacement.Y);
1708                 }
1709                 Debug.WriteLineIf(LayoutDebugScrollableBase, "OnPanGestureDetected Continue totalDisplacementForPan:" + totalDisplacementForPan);
1710
1711             }
1712             else if (panGesture.State == Gesture.StateType.Finished || panGesture.State == Gesture.StateType.Cancelled)
1713             {
1714                 PlayOverShootingShadowAnimation();
1715                 OnScrollDragEnded();
1716                 StopScroll(); // Will replace previous animation so will stop existing one.
1717
1718                 if (scrollAnimation == null)
1719                 {
1720                     scrollAnimation = new Animation();
1721                     scrollAnimation.Finished += ScrollAnimationFinished;
1722                 }
1723
1724                 float panVelocity = (ScrollingDirection == Direction.Horizontal) ? panGesture.Velocity.X : panGesture.Velocity.Y;
1725
1726                 if (SnapToPage)
1727                 {
1728                     PageSnap(panVelocity);
1729                 }
1730                 else
1731                 {
1732                     if (panVelocity == 0)
1733                     {
1734                         float currentScrollPosition = (ScrollingDirection == Direction.Horizontal ? ContentContainer.CurrentPosition.X : ContentContainer.CurrentPosition.Y);
1735                         scrollAnimation.DefaultAlphaFunction = new AlphaFunction(AlphaFunction.BuiltinFunctions.Linear);
1736                         scrollAnimation.Duration = 0;
1737                         scrollAnimation.AnimateTo(ContentContainer, (ScrollingDirection == Direction.Horizontal) ? "PositionX" : "PositionY", currentScrollPosition);
1738                         scrollAnimation.Play();
1739                     }
1740                     else
1741                     {
1742                         Decelerating(panVelocity, scrollAnimation);
1743                     }
1744                 }
1745
1746                 totalDisplacementForPan = 0;
1747                 scrolling = true;
1748                 readyToNotice = true;
1749                 OnScrollAnimationStarted();
1750             }
1751             return handled;
1752         }
1753
1754         internal void BaseRemove(View view)
1755         {
1756             base.Remove(view);
1757         }
1758
1759         internal override bool OnAccessibilityPan(PanGesture gestures)
1760         {
1761             if (SnapToPage && scrollAnimation != null && scrollAnimation.State == Animation.States.Playing)
1762             {
1763                 return false;
1764             }
1765
1766             OnPanGesture(gestures);
1767             return true;
1768         }
1769
1770         private float CustomScrollAlphaFunction(float progress)
1771         {
1772             if (panAnimationDelta == 0)
1773             {
1774                 return 1.0f;
1775             }
1776             else
1777             {
1778                 // Parameter "progress" is normalized value. We need to multiply target duration to calculate distance.
1779                 // Can get real distance using equation of deceleration (check Decelerating function)
1780                 // After get real distance, normalize it
1781                 float realDuration = progress * panAnimationDuration;
1782                 float realDistance = velocityOfLastPan * ((float)Math.Pow(decelerationRate, realDuration) - 1) / logValueOfDeceleration;
1783                 float result = Math.Min(realDistance / Math.Abs(panAnimationDelta), 1.0f);
1784
1785                 // This is hot-fix for if the velocity has very small value, result is not updated even progress done.
1786                 if (progress > 0.99) result = 1.0f;
1787
1788                 return result;
1789             }
1790         }
1791
1792         /// <summary>
1793         /// you can override it to custom your decelerating
1794         /// </summary>
1795         /// <param name="velocity">Velocity of current pan.</param>
1796         /// <param name="animation">Scroll animation.</param>
1797         [EditorBrowsable(EditorBrowsableState.Never)]
1798         protected virtual void Decelerating(float velocity, Animation animation)
1799         {
1800             if (animation == null) throw new ArgumentNullException(nameof(animation));
1801             // Decelerating using deceleration equation ===========
1802             //
1803             // V   : velocity (pixel per millisecond)
1804             // V0  : initial velocity
1805             // d   : deceleration rate,
1806             // t   : time
1807             // X   : final position after decelerating
1808             // log : natural logarithm
1809             //
1810             // V(t) = V0 * d pow t;
1811             // X(t) = V0 * (d pow t - 1) / log d;  <-- Integrate the velocity function
1812             // X(∞) = V0 * d / (1 - d); <-- Result using infinite T can be final position because T is tending to infinity.
1813             //
1814             // Because of final T is tending to infinity, we should use threshold value to finish.
1815             // Final T = log(-threshold * log d / |V0| ) / log d;
1816
1817             velocityOfLastPan = Math.Abs(velocity);
1818
1819             float currentScrollPosition = -(ScrollingDirection == Direction.Horizontal ? ContentContainer.CurrentPosition.X : ContentContainer.CurrentPosition.Y);
1820             panAnimationDelta = (velocityOfLastPan * decelerationRate) / (1 - decelerationRate);
1821             panAnimationDelta = velocity > 0 ? -panAnimationDelta : panAnimationDelta;
1822
1823             float destination = -(panAnimationDelta + currentScrollPosition);
1824             float adjustDestination = AdjustTargetPositionOfScrollAnimation(destination);
1825             float maxPosition = ScrollAvailableArea != null ? ScrollAvailableArea.Y : maxScrollDistance;
1826             float minPosition = ScrollAvailableArea != null ? ScrollAvailableArea.X : 0;
1827
1828             if (destination < -maxPosition || destination > minPosition)
1829             {
1830                 panAnimationDelta = velocity > 0 ? (currentScrollPosition - minPosition) : (maxPosition - currentScrollPosition);
1831                 destination = velocity > 0 ? minPosition : -maxPosition;
1832
1833                 if (panAnimationDelta == 0)
1834                 {
1835                     panAnimationDuration = 0.0f;
1836                 }
1837                 else
1838                 {
1839                     panAnimationDuration = (float)Math.Log((panAnimationDelta * logValueOfDeceleration / velocityOfLastPan + 1), decelerationRate);
1840                 }
1841
1842                 Debug.WriteLineIf(LayoutDebugScrollableBase, "\n" +
1843                     "OverRange======================= \n" +
1844                     "[decelerationRate] " + decelerationRate + "\n" +
1845                     "[logValueOfDeceleration] " + logValueOfDeceleration + "\n" +
1846                     "[Velocity] " + velocityOfLastPan + "\n" +
1847                     "[CurrentPosition] " + currentScrollPosition + "\n" +
1848                     "[CandidateDelta] " + panAnimationDelta + "\n" +
1849                     "[Destination] " + destination + "\n" +
1850                     "[Duration] " + panAnimationDuration + "\n" +
1851                     "================================ \n"
1852                 );
1853             }
1854             else
1855             {
1856                 panAnimationDuration = (float)Math.Log(-DecelerationThreshold * logValueOfDeceleration / velocityOfLastPan) / logValueOfDeceleration;
1857
1858                 if (adjustDestination != destination)
1859                 {
1860                     destination = adjustDestination;
1861                     panAnimationDelta = destination + currentScrollPosition;
1862                     velocityOfLastPan = Math.Abs(panAnimationDelta * logValueOfDeceleration / ((float)Math.Pow(decelerationRate, panAnimationDuration) - 1));
1863                     panAnimationDuration = (float)Math.Log(-DecelerationThreshold * logValueOfDeceleration / velocityOfLastPan) / logValueOfDeceleration;
1864                 }
1865
1866                 Debug.WriteLineIf(LayoutDebugScrollableBase, "\n" +
1867                     "================================ \n" +
1868                     "[decelerationRate] " + decelerationRate + "\n" +
1869                     "[logValueOfDeceleration] " + logValueOfDeceleration + "\n" +
1870                     "[Velocity] " + velocityOfLastPan + "\n" +
1871                     "[CurrentPosition] " + currentScrollPosition + "\n" +
1872                     "[CandidateDelta] " + panAnimationDelta + "\n" +
1873                     "[Destination] " + destination + "\n" +
1874                     "[Duration] " + panAnimationDuration + "\n" +
1875                     "================================ \n"
1876                 );
1877             }
1878
1879             finalTargetPosition = destination;
1880
1881             customScrollAlphaFunction = new UserAlphaFunctionDelegate(CustomScrollAlphaFunction);
1882             animation.DefaultAlphaFunction = new AlphaFunction(customScrollAlphaFunction);
1883             GC.KeepAlive(customScrollAlphaFunction);
1884             animation.Duration = (int)panAnimationDuration;
1885             animation.AnimateTo(ContentContainer, (ScrollingDirection == Direction.Horizontal) ? "PositionX" : "PositionY", destination);
1886             animation.Play();
1887         }
1888
1889         private void ScrollAnimationFinished(object sender, EventArgs e)
1890         {
1891             OnScrollAnimationEnded();
1892         }
1893
1894         /// <summary>
1895         /// Adjust scrolling position by own scrolling rules.
1896         /// Override this function when developer wants to change destination of flicking.(e.g. always snap to center of item)
1897         /// </summary>
1898         /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API
1899         [EditorBrowsable(EditorBrowsableState.Never)]
1900         protected virtual float AdjustTargetPositionOfScrollAnimation(float position)
1901         {
1902             return position;
1903         }
1904
1905         /// <summary>
1906         /// Scroll position given to ScrollTo.
1907         /// This is the position in the opposite direction to the position of ContentContainer.
1908         /// </summary>
1909         /// <since_tizen> 8 </since_tizen>
1910         public Position ScrollPosition
1911         {
1912             get
1913             {
1914                 return new Position(-ContentContainer.Position);
1915             }
1916         }
1917
1918         /// <summary>
1919         /// Current scroll position in the middle of ScrollTo animation.
1920         /// This is the position in the opposite direction to the current position of ContentContainer.
1921         /// </summary>
1922         /// <since_tizen> 8 </since_tizen>
1923         public Position ScrollCurrentPosition
1924         {
1925             get
1926             {
1927                 return new Position(-ContentContainer.CurrentPosition);
1928             }
1929         }
1930
1931         /// <summary>
1932         /// Remove all children in ContentContainer.
1933         /// </summary>
1934         /// <param name="dispose">If true, removed child is disposed.</param>
1935         [EditorBrowsable(EditorBrowsableState.Never)]
1936         public void RemoveAllChildren(bool dispose = false)
1937         {
1938             RecursiveRemoveChildren(ContentContainer, dispose);
1939         }
1940
1941         private void RecursiveRemoveChildren(View parent, bool dispose)
1942         {
1943             if (parent == null)
1944             {
1945                 return;
1946             }
1947             int maxChild = (int)parent.GetChildCount();
1948             for (int i = maxChild - 1; i >= 0; --i)
1949             {
1950                 View child = parent.GetChildAt((uint)i);
1951                 if (child == null)
1952                 {
1953                     continue;
1954                 }
1955                 RecursiveRemoveChildren(child, dispose);
1956                 parent.Remove(child);
1957                 if (dispose)
1958                 {
1959                     child.Dispose();
1960                 }
1961             }
1962         }
1963
1964         internal bool IsChildNearlyVisble(View child, float offset = 0)
1965         {
1966             if (ScreenPosition.X - offset < child.ScreenPosition.X + child.SizeWidth &&
1967                 ScreenPosition.X + SizeWidth + offset > child.ScreenPosition.X &&
1968                 ScreenPosition.Y - offset < child.ScreenPosition.Y + child.SizeHeight &&
1969                 ScreenPosition.Y + SizeHeight + offset > child.ScreenPosition.Y)
1970             {
1971                 return true;
1972             }
1973             else
1974             {
1975                 return false;
1976             }
1977         }
1978
1979         /// <inheritdoc/>
1980         [EditorBrowsable(EditorBrowsableState.Never)]
1981         public override View GetNextFocusableView(View currentFocusedView, View.FocusDirection direction, bool loopEnabled)
1982         {
1983             bool isHorizontal = (ScrollingDirection == Direction.Horizontal);
1984             float targetPosition = -(ScrollingDirection == Direction.Horizontal ? ContentContainer.CurrentPosition.X : ContentContainer.CurrentPosition.Y);
1985             float stepDistance = (stepScrollDistance != 0? stepScrollDistance : (isHorizontal ? Size.Width * 0.25f :  Size.Height * 0.25f));
1986
1987             bool forward = ((isHorizontal && direction == View.FocusDirection.Right) ||
1988                             (!isHorizontal && direction == View.FocusDirection.Down) ||
1989                             (direction == View.FocusDirection.Clockwise));
1990             bool backward = ((isHorizontal && direction == View.FocusDirection.Left) ||
1991                              (!isHorizontal && direction == View.FocusDirection.Up) ||
1992                              (direction == View.FocusDirection.CounterClockwise));
1993
1994             View nextFocusedView = FocusManager.Instance.GetNearestFocusableActor(this, currentFocusedView, direction);
1995
1996             // Move out focus from ScrollableBase.
1997             // FIXME: Forward, Backward is unimplemented other components.
1998             if (direction == View.FocusDirection.Forward ||
1999                 direction == View.FocusDirection.Backward ||
2000                 (nextFocusedView == null &&
2001                 ((forward && maxScrollDistance - targetPosition < 0.1f) ||
2002                  (backward && targetPosition < 0.1f))))
2003             {
2004                 var next = FocusManager.Instance.GetNearestFocusableActor(this.Parent, this, direction);
2005                 Debug.WriteLineIf(focusDebugScrollableBase, $"Focus move [{direction}] out from ScrollableBase! Next focus target {next}:{next?.ID}");
2006                 return next;
2007             }
2008
2009             if (focusDebugScrollableBase)
2010             {
2011                 global::System.Text.StringBuilder debugMessage = new global::System.Text.StringBuilder("=========================================================\n");
2012                 debugMessage.Append($"GetNextFocusableView On: {this}:{this.ID}\n");
2013                 debugMessage.Append($"----------------Current: {currentFocusedView}:{currentFocusedView?.ID}\n");
2014                 debugMessage.Append($"-------------------Next: {nextFocusedView}:{nextFocusedView?.ID}\n");
2015                 debugMessage.Append($"--------------Direction: {direction}\n");
2016                 debugMessage.Append("=========================================================");
2017                 Debug.WriteLineIf(focusDebugScrollableBase, debugMessage);
2018             }
2019
2020             if (nextFocusedView != null)
2021             {
2022                 if (null != FindDescendantByID(nextFocusedView.ID))
2023                 {
2024                     if (IsChildNearlyVisble(nextFocusedView, stepDistance) == true)
2025                     {
2026                         ScrollToChild(nextFocusedView, true);
2027                         return nextFocusedView;
2028                     }
2029                 }
2030             }
2031
2032             if (forward || backward)
2033             {
2034                 // Fallback to current focus or scrollableBase till next focus visible in scrollable.
2035                 if (null != currentFocusedView && null != FindDescendantByID(currentFocusedView.ID))
2036                 {
2037                     nextFocusedView = currentFocusedView;
2038                 }
2039                 else
2040                 {
2041                     Debug.WriteLineIf(focusDebugScrollableBase, "current focus view is not decendant. return ScrollableBase!");
2042                     return this;
2043                 }
2044
2045                 if (forward)
2046                 {
2047                     targetPosition += stepDistance;
2048                     targetPosition = targetPosition > maxScrollDistance ? maxScrollDistance : targetPosition;
2049
2050                 }
2051                 else if (backward)
2052                 {
2053                     targetPosition -= stepDistance;
2054                     targetPosition = targetPosition < 0 ? 0 : targetPosition;
2055                 }
2056
2057                 ScrollTo(targetPosition, true);
2058
2059                 Debug.WriteLineIf(focusDebugScrollableBase, $"ScrollTo :({targetPosition})");
2060             }
2061
2062             Debug.WriteLineIf(focusDebugScrollableBase, $"return end : {nextFocusedView}:{nextFocusedView?.ID}");
2063             return nextFocusedView;
2064         }
2065
2066         /// <inheritdoc/>
2067         [EditorBrowsable(EditorBrowsableState.Never)]
2068         protected override bool AccessibilityScrollToChild(View child)
2069         {
2070             if (child == null)
2071             {
2072                 return false;
2073             }
2074
2075             if (ScrollingDirection == Direction.Horizontal)
2076             {
2077                 if (child.ScreenPosition.X + child.Size.Width <= this.ScreenPosition.X)
2078                 {
2079                     if (SnapToPage)
2080                     {
2081                         PageSnap(PageFlickThreshold + 1);
2082                     }
2083                     else
2084                     {
2085                         ScrollTo((float)(child.ScreenPosition.X - ContentContainer.ScreenPosition.X), false);
2086                     }
2087                 }
2088                 else if (child.ScreenPosition.X >= this.ScreenPosition.X + this.Size.Width)
2089                 {
2090                     if (SnapToPage)
2091                     {
2092                         PageSnap(-(PageFlickThreshold + 1));
2093                     }
2094                     else
2095                     {
2096                         ScrollTo((float)(child.ScreenPosition.X + child.Size.Width - ContentContainer.ScreenPosition.X - this.Size.Width), false);
2097                     }
2098                 }
2099             }
2100             else
2101             {
2102                 if (child.ScreenPosition.Y + child.Size.Height <= this.ScreenPosition.Y)
2103                 {
2104                     if (SnapToPage)
2105                     {
2106                         PageSnap(PageFlickThreshold + 1);
2107                     }
2108                     else
2109                     {
2110                         ScrollTo((float)(child.ScreenPosition.Y - ContentContainer.ScreenPosition.Y), false);
2111                     }
2112                 }
2113                 else if (child.ScreenPosition.Y >= this.ScreenPosition.Y + this.Size.Height)
2114                 {
2115                     if (SnapToPage)
2116                     {
2117                         PageSnap(-(PageFlickThreshold + 1));
2118                     }
2119                     else
2120                     {
2121                         ScrollTo((float)(child.ScreenPosition.Y + child.Size.Height - ContentContainer.ScreenPosition.Y - this.Size.Height), false);
2122                     }
2123                 }
2124             }
2125
2126             return true;
2127         }
2128     }
2129
2130 } // namespace