diff --git a/src/Tizen.NUI.Wearable/src/public/CircularPagination.cs b/src/Tizen.NUI.Wearable/src/public/CircularPagination.cs index 70183d20456..3258e8e3b9a 100755 --- a/src/Tizen.NUI.Wearable/src/public/CircularPagination.cs +++ b/src/Tizen.NUI.Wearable/src/public/CircularPagination.cs @@ -47,8 +47,6 @@ public class CircularPagination : Control private bool isCurrentIndicatorCentered = false; // When the current indicator is the center one, this variable becomes true. private bool isOddNumber = true; private bool uninitializedLeftIndicator = true; // Need it when the indicators are asymmetry and the right indicator count is set earlier than left one. - private Animation selectAnimation = null; - private bool isNeedAnimation = false; // TODO : Animation will support using override function later. Position2D[] oddArray = new Position2D[] { new Position2D(36, 74), new Position2D(47, 60), new Position2D(60, 47), new Position2D(74, 36), new Position2D(89, 26), new Position2D(105, 18), new Position2D(122, 11), new Position2D(139, 7), @@ -203,7 +201,6 @@ public bool IsSymmetrical } } - /// /// Gets or sets the number of the pages/indicators. /// @@ -516,14 +513,6 @@ public virtual void SetIndicatorPosition(int index, Position position) UpdateVisual(); } - private void CreateSelectAnimation() - { - if (selectAnimation == null) - { - selectAnimation = new Animation(250); - } - } - /// /// You can override it to do your select out operation. /// @@ -593,16 +582,6 @@ protected override void Dispose(DisposeTypes type) if (type == DisposeTypes.Explicit) { - if (selectAnimation != null) - { - if (selectAnimation.State == Animation.States.Playing) - { - selectAnimation.Stop(); - } - selectAnimation.Dispose(); - selectAnimation = null; - } - container.RemoveAll(); indicatorList.Clear(); diff --git a/src/Tizen.NUI.Wearable/src/public/RecyclerView/RecyclerView.cs b/src/Tizen.NUI.Wearable/src/public/RecyclerView/RecyclerView.cs index 94e2c2d497d..a311455d2f1 100755 --- a/src/Tizen.NUI.Wearable/src/public/RecyclerView/RecyclerView.cs +++ b/src/Tizen.NUI.Wearable/src/public/RecyclerView/RecyclerView.cs @@ -76,6 +76,11 @@ private void OnItemSizeChanged(object source, PropertyNotification.NotifyEventAr layoutManager.Layout(ScrollingDirection == Direction.Horizontal ? ContentContainer.CurrentPosition.X : ContentContainer.CurrentPosition.Y); } + /// + /// Gets / Sets total number of items. + /// + /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API + [EditorBrowsable(EditorBrowsableState.Never)] public int TotalItemCount { get @@ -127,7 +132,11 @@ private void InitializeItems() } } - + /// + /// Scrolling direction mode for RecyclerView. . + /// + /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API + [EditorBrowsable(EditorBrowsableState.Never)] public new Direction ScrollingDirection { get @@ -253,6 +262,8 @@ protected override float AdjustTargetPositionOfScrollAnimation(float position) private View focusedView; private int prevFocusedDataIndex = 0; + /// + [EditorBrowsable(EditorBrowsableState.Never)] public override View GetNextFocusableView(View currentFocusedView, View.FocusDirection direction, bool loopEnabled) { View nextFocusedView = null; diff --git a/src/Tizen.NUI.Wearable/src/public/WearableList.cs b/src/Tizen.NUI.Wearable/src/public/WearableList.cs index a7f4c3293b8..9df4a1661b6 100755 --- a/src/Tizen.NUI.Wearable/src/public/WearableList.cs +++ b/src/Tizen.NUI.Wearable/src/public/WearableList.cs @@ -57,6 +57,8 @@ public class WearableList : RecyclerView DecelerationRate = 0.991f; } + /// + [EditorBrowsable(EditorBrowsableState.Never)] protected override void SetScrollbar() { if(LayoutManager != null) @@ -65,6 +67,8 @@ protected override void SetScrollbar() } } + /// + [EditorBrowsable(EditorBrowsableState.Never)] public new RecycleAdapter Adapter { get