当前位置:   article > 正文

自定义 View 之富有弹性的 NestedScrollView_vue 仿 nestedscrollview 原理

vue 仿 nestedscrollview 原理

博主声明:

转载请在开头附加本文链接及作者信息,并标记为转载。本文由博主 威威喵 原创,请多支持与指教。

本文首发于此   博主威威喵  |  博客主页https://blog.csdn.net/smile_running

    首先简单的介绍一下 NestedScrollView 这个控件,它是继承自 FrameLayout 的一个可以滚动视图的控件,其位置是在我们的 support v4 包下面,其使用的方式也异常简单,但是它规定 NestedScrollView 内部只能包含一个 View,通常来说,我们都是包含着一个 LinearLayout 或者其他父容器,这样才能存放更多的子 View 

    介绍了一下 NestedScrollView 的相关知识点,它和 ScrollView 的使用方式一模一样。但是呢,我们在应用当中可能存在这样的需求,就是让我们的滚动视图富有一定的弹性动画效果,有点类似于 QQ 列表中那种弹性的效果,我们给 NestedScrollView 添加了一定的弹性动画之后,用户体验明显就增加了。

    接下来,我们来看看要实现的一个 NestedScrollView 的弹性效果

    其最终效果就是这个样子了,其中那个粉红色的背景是 LinearLayout,内容存放着两个 TextView 用于测试,这部分代码没什么好介绍的,如下

  1. <nd.no.xww.qqmessagedragview.ElasticScrollView
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent">
  4. <LinearLayout
  5. android:background="#ffccff"
  6. android:layout_width="match_parent"
  7. android:layout_height="wrap_content"
  8. android:layout_margin="16dp"
  9. android:orientation="vertical">
  10. <TextView
  11. android:layout_width="match_parent"
  12. android:layout_height="1000dp"
  13. android:gravity="center"
  14. android:text="@string/app_name"
  15. android:textColor="#ffffff" />
  16. <TextView
  17. android:layout_width="match_parent"
  18. android:layout_height="1000dp"
  19. android:gravity="center"
  20. android:text="@string/app_name"
  21. android:textColor="#ffffff" />
  22. </LinearLayout>
  23. </nd.no.xww.qqmessagedragview.ElasticScrollView>

    接下来,我们看如何去实现它的动画效果。首先,我们的 View 是一个可以滚动的视图,直接继承现有的 NestedScrollView 即可,然后给它添加一下弹性的动画就好了。

    因为 NestedScrollView 内部只能有一个直接的子 View,所以要想让里面的内容可以拖动的话,我们需要获取这个 View,代码如下:

  1. @Override
  2. protected void onFinishInflate() {
  3. super.onFinishInflate();
  4. //获取的就是 scrollview 的第一个子 View
  5. if (getChildCount() > 0) {
  6. mInnerView = getChildAt(0);
  7. }
  8. }

    接下来是一个滑动的监听情况,有两种可能。第一种是:NestedScrollView 移动到了顶部 top 处,这时候可以继续拖动,内容位置也会随着改变,当手指松开的刹那,我们拿到它原来的坐标和拖动的距离进行比较,将它还原回去即可,期间可以开启动画效果,设置一个插值器,效果更佳。

    还有第二种可能,就是 NestedScrollView 移动到了底部 bottom 处,其处理方式与上面一致,我就不再重复了。当然,还有就是正常情况下,既不是顶部、也不是底部,那就不去处理,正常来就好了。

    这里判断是否在 top 或 bottom 处,需要根据子 View( LinearLayout) 的宽度减去控件的宽度,如果有 margin 的话,还有减去 margin 的大小,代码如下:

  1. @Override
  2. protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
  3. super.onMeasure(widthMeasureSpec, heightMeasureSpec);
  4. mWidth = MeasureSpec.getSize(widthMeasureSpec);
  5. mHeight = MeasureSpec.getSize(heightMeasureSpec);
  6. MarginLayoutParams lp = (MarginLayoutParams) mInnerView.getLayoutParams();
  7. //减去 margin 的值
  8. offset = mInnerView.getMeasuredHeight() - lp.topMargin - lp.bottomMargin - mHeight;
  9. }

    判断是否处于 top 或 bottom 代码

  1. // 判断是否处于顶部或者底部
  2. public boolean isNeedMove() {
  3. // 0是顶部,offset是底部
  4. if (getScrollY() == 0 || getScrollY() >= offset) {
  5. return true;
  6. }
  7. return false;
  8. }

    最后,根据我们的触摸事件拿到的偏移量,开启动画即可

  1. public void translateAnimator() {
  2. TranslateAnimation animation = new TranslateAnimation(0, 0, mInnerView.getTop(), mRect.top);
  3. animation.setDuration(500);
  4. animation.setInterpolator(new AnticipateInterpolator(3f));
  5. mInnerView.startAnimation(animation);
  6. // 设置回到正常的布局位置
  7. mInnerView.layout(mRect.left, mRect.top, mRect.right, mRect.bottom);
  8. mRect.setEmpty();
  9. }

    下面是完整的代码,运行一下就会看到上面动态图的效果。

  1. package nd.no.xww.qqmessagedragview;
  2. import android.content.Context;
  3. import android.graphics.Rect;
  4. import android.support.annotation.NonNull;
  5. import android.support.annotation.Nullable;
  6. import android.support.v4.widget.NestedScrollView;
  7. import android.util.AttributeSet;
  8. import android.view.MotionEvent;
  9. import android.view.View;
  10. import android.view.animation.AnticipateInterpolator;
  11. import android.view.animation.TranslateAnimation;
  12. /**
  13. * @author xww
  14. * @desciption : 一个具有弹性的 NestedScrollView
  15. * @date 2019/8/4
  16. * @time 22:00
  17. * 博主:威威喵
  18. * 博客:https://blog.csdn.net/smile_Running
  19. */
  20. public class ElasticScrollView extends NestedScrollView {
  21. private View mInnerView;// 孩子View
  22. private float mDownY;// 点击时y坐标
  23. private Rect mRect = new Rect();
  24. private int offset;
  25. private boolean isCount = false;// 是否开始计算
  26. private int mWidth;
  27. private int mHeight;
  28. public ElasticScrollView(@NonNull Context context) {
  29. this(context, null);
  30. }
  31. public ElasticScrollView(@NonNull Context context, @Nullable AttributeSet attrs) {
  32. this(context, attrs, 0);
  33. }
  34. public ElasticScrollView(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
  35. super(context, attrs, defStyleAttr);
  36. }
  37. @Override
  38. protected void onFinishInflate() {
  39. super.onFinishInflate();
  40. //获取的就是 scrollview 的第一个子 View
  41. if (getChildCount() > 0) {
  42. mInnerView = getChildAt(0);
  43. }
  44. }
  45. @Override
  46. protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
  47. super.onMeasure(widthMeasureSpec, heightMeasureSpec);
  48. mWidth = MeasureSpec.getSize(widthMeasureSpec);
  49. mHeight = MeasureSpec.getSize(heightMeasureSpec);
  50. MarginLayoutParams lp = (MarginLayoutParams) mInnerView.getLayoutParams();
  51. //减去 margin 的值
  52. offset = mInnerView.getMeasuredHeight() - lp.topMargin - lp.bottomMargin - mHeight;
  53. }
  54. @Override
  55. public boolean onTouchEvent(MotionEvent e) {
  56. if (mInnerView != null) {
  57. commOnTouchEvent(e);
  58. }
  59. return super.onTouchEvent(e);
  60. }
  61. public void commOnTouchEvent(MotionEvent e) {
  62. switch (e.getAction()) {
  63. case MotionEvent.ACTION_DOWN:
  64. break;
  65. case MotionEvent.ACTION_MOVE:
  66. final float preY = mDownY;// 按下时的y坐标
  67. float nowY = e.getY();// 时时y坐标
  68. int deltaY = (int) (preY - nowY);// 滑动距离
  69. //排除出第一次移动计算无法得知y坐标
  70. if (!isCount) {
  71. deltaY = 0;
  72. }
  73. mDownY = nowY;
  74. // 当滚动到最上或者最下时就不会再滚动,这时移动布局
  75. if (isNeedMove()) {
  76. if (mRect.isEmpty()) {
  77. // 保存正常的布局位置
  78. mRect.set(mInnerView.getLeft(), mInnerView.getTop(),
  79. mInnerView.getRight(), mInnerView.getBottom());
  80. }
  81. // 移动布局
  82. mInnerView.layout(mInnerView.getLeft(), mInnerView.getTop() - deltaY / 2,
  83. mInnerView.getRight(), mInnerView.getBottom() - deltaY / 2);
  84. }
  85. isCount = true;
  86. break;
  87. case MotionEvent.ACTION_UP:
  88. if (isNeedAnimation()) {
  89. translateAnimator();
  90. isCount = false;
  91. }
  92. break;
  93. }
  94. }
  95. public void translateAnimator() {
  96. TranslateAnimation animation = new TranslateAnimation(0, 0, mInnerView.getTop(), mRect.top);
  97. animation.setDuration(500);
  98. animation.setInterpolator(new AnticipateInterpolator(3f));
  99. mInnerView.startAnimation(animation);
  100. // 设置回到正常的布局位置
  101. mInnerView.layout(mRect.left, mRect.top, mRect.right, mRect.bottom);
  102. mRect.setEmpty();
  103. }
  104. // 是否需要开启动画
  105. public boolean isNeedAnimation() {
  106. return !mRect.isEmpty();
  107. }
  108. // 判断是否处于顶部或者底部
  109. public boolean isNeedMove() {
  110. // 0是顶部,offset是底部
  111. if (getScrollY() == 0 || getScrollY() >= offset) {
  112. return true;
  113. }
  114. return false;
  115. }
  116. }

    代码不难理解,我刚开始并没有注意这个 Margin 的值,导致的情况可能会在底部的时候,无法继续向上拉,也就是底部没有弹性效果,所以要在测量时把 margin 也处理一下就能解决问题了。

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号