手把手教你打造RecyclerView滚动特效

GloSpowers 7年前
   <h3>前情提要</h3>    <p style="text-align:center"><img src="https://simg.open-open.com/show/7f27ef3a95152f8d9f4aacd4e14797e0.gif"></p>    <p style="text-align: center;">效果图</p>    <p>最近开发中遇到这样的需求,recyclerview的item随滚动改变大小和透明度。这个效果看起来挺有动感的,似乎实现起来有点复杂,其实不然,接下来将带领大家手把手实现这个效果。</p>    <h3>Item动画分析</h3>    <p>我们化整为零,将这个效果分解到一个item上来看其实是这样的:</p>    <p style="text-align:center"><img src="https://simg.open-open.com/show/7f99e4638510f6f1889fdcf422608b41.gif"></p>    <p style="text-align: center;">item动画</p>    <ul>     <li>实现思路<br> 看到这个动画效果时,我首先想到的是,这个动画是可控的,不是通过设置anim.setDuration来实现的,所以要放弃Animation的念头,转而用传入process(动画执行的进度)的思路。</li>     <li>分解动画<br> 继续化整为零,可以将这个动画效果分解为:蒙版透明度(alpha)、宽度(width)、图片缩放(scale)</li>     <li>状态转换<br> 先不考虑动画变化的具体细节,先分清楚状态机。动画的变化状态为:<br> 蒙版:暗->亮->暗<br> 宽度:小->大->小<br> 图片:缩->放->缩</li>     <li>考虑细节<br> 蒙版(黑色蒙版):<br> 1%->50%: 1.0->0.0;<br> 51%->100%: 0.0->1.0;<br> 宽度(通过设置横向外边距):<br> 1%->25%: 16dp->0dp;<br> 26%->75%: 0dp;<br> 76%->100%: 0dp->16dp<br> 图片缩放:</li>    </ul>    <p style="text-align:center"><img src="https://simg.open-open.com/show/b5700e65e6f133b5d48567751f5e7c9a.png"></p>    <p style="text-align:center;">图片缩放</p>    <p>1%->25%: 1.0->(b/a);</p>    <p>26%->50%: (b/a)->(c/a);</p>    <p>51%->75%: (c/a)->(b/a);</p>    <p>76%->100%: (b/a)->1.0;</p>    <h3>Item动画代码实现</h3>    <p>新建一个CustomAnimation类,定义相应动画控件的id,并初始化:</p>    <pre>  <code class="language-java">// 无控件  private static final int NO_VIEW = -999;  // 透明度变化视图  private int mAlphaViewId = NO_VIEW;  // 图片变化视图  private int mImageViewId = NO_VIEW;  // 边距变化视图  private int mMarginViewId = NO_VIEW;    /**   * 设置透明度变化控件的ID   * @param resId   */  public void setAlphaViewId(int resId) {      Log.i("animm", "setAlphaViewId");      mAlphaViewId = resId;  }    /**   * 设置图片变化控件的ID   * @param resId   */  public void setImageViewId(int resId) {      Log.i("animm", "setImageViewId");      mImageViewId = resId;  }    /**   * 设置外边距变化控件的ID   * @param resId   */  public void setMarginViewId(int resId) {      Log.i("animm", "setMarginViewId");      mMarginViewId = resId;  }</code></pre>    <p>定义变量process,并通过传入process的值进行效果实现:</p>    <pre>  <code class="language-java">// 动画进度  private int mProcess = 0;    /**   * 通过进度值控制动画的进度   * @param viewGroup 父容器   * @param process 动画变化进度   */  public void setAnimByProcess(ViewGroup viewGroup, int process) {      if (viewGroup == null) {          return;      }      mProcess = process;      /**       * 蒙版透明度设置       */      if (enableAlpha && mAlphaViewId != NO_VIEW) {          View view = viewGroup.findViewById(mAlphaViewId);          if (process > 0 && process <= 25) {              float alpha = (25 - process) / 25.0f;              view.setAlpha(alpha);          } else if (process > 75 && process <= 100) {              float alpha = (process - 75) / 25.0f;              view.setAlpha(alpha);          }      }       /**       *       * 设置图片大小       */    if (enableImage && mImageViewId != NO_VIEW) {          ImageView imageView = (ImageView) viewGroup.findViewById(mImageViewId);          float curWidth = 0;          if (process <= 25) {              float percent = process / 25.0f;              float marginHorizontal = mMarginHorizontal * percent;              curWidth = mImgOrgWidth + 2 * marginHorizontal;          } else if (process > 25 && process <= 50) {              float percent = (process - 25) / 25.0f;              float marginHorizontal = mMarginHorizontal * percent;              curWidth = mScreenWidth + 2 * marginHorizontal;          } else if (process > 50 && process <= 75) {              float percent = (75 - process) / 25.0f;              float marginHorizontal = mMarginHorizontal * percent;              curWidth =  mScreenWidth + 2 * marginHorizontal;          } else {              float percent = (100 - process) / 25.0f;              float marginHorizontal = mMarginHorizontal * percent;              curWidth = mImgOrgWidth + 2 * marginHorizontal;          }          float scale = curWidth / mImgOrgWidth ;          scale *= 1.1f;          imageView.setScaleX(scale);          imageView.setScaleY(scale);      }      /**       * 设置外边距(横向)       */      if (enableMargin && mMarginViewId != NO_VIEW) {          View view = viewGroup.findViewById(mMarginViewId);          RelativeLayout.LayoutParams lp = (RelativeLayout.LayoutParams) view.getLayoutParams();          if (process > 0 && process <= 25) {              float percent = (25 - process) / 25.0f;              float marginHorizontal = mMarginHorizontal * percent;              lp.setMargins((int)marginHorizontal, (int)mMarginTop, (int)marginHorizontal, (int)mMarginBottom);              view.setLayoutParams(lp);          } else if (process > 75 && process <= 100) {              float percent = (process - 75) / 25.0f;              float marginHorizontal = mMarginHorizontal * percent;              lp.setMargins((int)marginHorizontal, (int)mMarginTop, (int)marginHorizontal, (int)mMarginBottom);              view.setLayoutParams(lp);          }      }  }</code></pre>    <h3>结合RecyclerView思考</h3>    <p>基于上述代码,我们基本实现动画的细节,接下来我们需要思考的是,如何将RecyclerView与process结合?思考这个问题前,我们来看一下这个效果:</p>    <p style="text-align:center"><img src="https://simg.open-open.com/show/b570f1c632666a5c26b50554e745f59b.gif"></p>    <p style="text-align: center;">列表滑动效果</p>    <p>这是我用简书的 <a href="/misc/goto?guid=4959747024911471882" rel="nofollow,noindex">Markdown</a> 代码块语法实现的 <a href="/misc/goto?guid=4959747025003738046" rel="nofollow,noindex">仿RecyclerView列表的效果</a> ,基于这个效果我想到将侧边栏的滑块和RecyclerView的Item结合起来,与动画的process变量相关联:</p>    <p style="text-align:center"><img src="https://simg.open-open.com/show/31891ac76fc2f5aaae73d963962ceacd.png"></p>    <p style="text-align: center;">0%</p>    <p style="text-align:center"><img src="https://simg.open-open.com/show/47c1cfb92a9b63db5a9c923a265ba635.png"></p>    <p style="text-align: center;">50%</p>    <p style="text-align:center"><img src="https://simg.open-open.com/show/ef2814eeffc6776fc1b6d7375e275985.png"></p>    <p style="text-align: center;">100%</p>    <p>通过右侧小滑块底部与Item顶部之间的距离占两个Item高度的百分比作为process的值:</p>    <p style="text-align:center"><img src="https://simg.open-open.com/show/a00afa3fcbf7493f16fa23997bdcf5eb.png"></p>    <p style="text-align: center;">手机屏幕坐标示意图</p>    <p>process = (turningLine – itemTop) / (2 * itemHeight);</p>    <p>如此,我们将此关系放入新建的类TurnProcess中:</p>    <pre>  <code class="language-java">public class TurnProcess {      /**       * 返回动画完成的进度       * @param itemTop       * @param turningLine       * @param itemHeight       * @return       */      public static int getProcess(float itemTop, float turningLine, float itemHeight) {          if (turningLine < itemTop || turningLine > (itemHeight + itemTop)) {              return 0;          } else {              float percent = (turningLine - itemTop) / itemHeight;              return (int) (percent * 100);          }      }  }</code></pre>    <h3>计算滑动块底部的位置</h3>    <p>得到了上一步滑动与process的关系,接下来我们来计算一下滑块底部到RecyclerView可见范围顶部的距离。</p>    <p style="text-align:center"><img src="https://simg.open-open.com/show/7de6db7e892200d2c6abba975fc4a7ca.png"></p>    <p style="text-align: center;">RecyclerView初始情况</p>    <p>我们可以将RecyclerView初始情况设想如上图,此时turningLine的值为0。当RecyclerView滑动时:</p>    <p style="text-align:center"><img src="https://simg.open-open.com/show/2fe5fdabe55b6296a81afc28dfbd1b53.png"></p>    <p style="text-align: center;">RecyclerView滚动高度与turningLine的关系</p>    <p>由上图,我们可得到turniingLine与RecyclerView滑动距离的关系,从而得到turningLine的值:</p>    <p>scrollY / totalScroll = turningLine / totalHeight;</p>    <p>turningLine = scrollY * totalHeight / totalScroll;</p>    <p>totalScroll的值可以通过RecyclerView总高度(包含不可见部分)与RecyclerView可见部分的高度相差得到;而scrollY则随着RecyclerView的滚动变化,因此需要对RecyclerView进行滚动事件的监听:</p>    <pre>  <code class="language-java">recyclerView.addOnScrollListener(new RecyclerView.OnScrollListener() {      @Override      public void onScrolled(RecyclerView recyclerView, int dx, int dy) {          float scrollY = getScrollDistance(recyclerView);      }  }    /**   * 获取滚动的距离   */  private int getScrollDistance(RecyclerView recyclerView) {      LinearLayoutManager layoutManager = (LinearLayoutManager) recyclerView.getLayoutManager();      View firstVisibleItem = recyclerView.getChildAt(0);      int firstItemPosition = layoutManager.findFirstVisibleItemPosition();      int itemHeight = firstVisibleItem.getHeight();      int firstItemBottom = layoutManager.getDecoratedBottom(firstVisibleItem);      return (firstItemPosition + 1) * itemHeight - firstItemBottom;}</code></pre>    <p>如此,不断变化的turningLine与RecyclerView的滚动建立了关系;至此,动画与RecyclerView的逻辑关系梳理完毕。按照实现RecyclerView的套路一步步实现最基本的列表效果,然后将动画与滚动监听的关系放入Adapter中。需要强调的是:每一个Item都是随着RecyclerView的滚动进行变化的,所以每一个Item的ViewHolder中都注册RecyclerView的监听事件来监听RecyclerView的滑动。</p>    <h3>不足及期望</h3>    <p>这样的动画效果固然有趣,但是其仍存在很多不足,就自己发现的问题,列不足如下:</p>    <ul>     <li>每一个Item都监听RecyclerView的滑动事件非常耗时,在低端机上可能存在滑动不流畅的现象,尚未测试,但在红米 Not 3联发科版系统(不得不说这个系统真的很渣,亲测体验)上运行未出现异常。</li>     <li>当RecyclerView滑动太快时,单位滚动距离内,滚动监听事件的触发频率较低,导致有些Item的动画进度未达到100%便从屏幕中消失,从而存在重新滚动到那个Item时,Item的动画停留在1%~99%之间的某一帧,影响RecyclerView的展示效果。</li>     <li>因ImageView设置的ScaleType为CenterCrop,所以图片右侧变化在放大过程中会有类似于金属拉丝的效果,因此图片缩放的scale最好在原来的基础上乘以1.1,在单个Item的动画中此问题已解决,但在RecyclerView中,此问题仍然存在。</li>    </ul>    <p>在此,期望有耐心将本文看完的小伙伴们在文章下方的评论里留下宝贵意见,一起来完善这个效果。另,若有小伙伴在Github上看到有这样效果的稳定的第三方库,希望可以在文章下方评论中留下链接。</p>    <p> </p>    <p> </p>    <p>来自:http://www.androidchina.net/6535.html</p>    <p> </p>