Android 基于RecyclerView实现的歌词滚动自定义控件

Android 基于RecyclerView实现的歌词滚动自定义控件,第1张

概述本文介绍了Android基于RecyclerView实现的歌词滚动自定义控件,分享给大家,具体如下:

本文介绍了AndroID 基于RecyclerVIEw实现的歌词滚动自定义控件,分享给大家,具体如下:

先来几张效果图:

这几天打算做一个控件,来让自己复习一下自定义 vIEw 的知识以及事件分发机制的原理与应用。对于这个控件,我已经封装好了,只要调用就可以了。

本来是想放上 gitHub 和 添加依赖的。但是提交 github 出了问题一直不会弄,所以就只能先等等了。((;′⌒`))

接下来说一下实现原理:

该控件分为以下几个部分:

歌词自动滚动 歌词颜色字体变化 触碰屏幕歌词不滚动,高亮显示,离开时自动移动到当前歌词位置 触碰屏幕中间线条出现以及显示该歌词的时间 点击歌词跳转到当前位置并输出当时时间 可设置跳转时间跳到相应歌词位置

接下来我一个一个大概讲述一下思路。

1.对于滚动,我们可以调用 RecyclerVIEw.smoothScrollBy() 方法,

相对于 ScrollBy() 方法,该方法能够实现平滑滑动。

我设置了总共显示九句歌词。而且因为我想在歌词前面和后面留一些空白,这些看起来会好看些。所以,在歌词列表里面我加多了一些空白。

List<String> wordList = new ArrayList<>();    wordList.add("");    wordList.add("");    wordList.add("");    wordList.add("");    wordList.addAll(mWordList);    wordList.add("");    wordList.add("");    wordList.add("");    wordList.add("");

由于歌词的滚自动滚动是根据歌词时间来进行移动的。所以我们需要需要使用 Runable 来执行滚动 *** 作。而且为了避免内存泄漏。将 Runable 实现类修饰为 static 。所以歌词列表索引位置有所变化。

private static class AutopullWork implements Runnable {    public AutopullWork(AutopullRecyclerVIEw autopullRecyclerVIEw) {      weakReference = new WeakReference<AutopullRecyclerVIEw>(autopullRecyclerVIEw);    }    @OverrIDe    public voID run() {    autopullRecyclerVIEw.smoothScrollBy(0,autopullRecyclerVIEw.getMeasuredHeight() / 9);    autopullRecyclerVIEw.postDelayed(autopullRecyclerVIEw.autopullWork,autopullRecyclerVIEw.timeList.get(autopullRecyclerVIEw.currentWord - 4) - autopullRecyclerVIEw.timeList.get(autopullRecyclerVIEw.currentWord - 5));    ......

2.对于歌词的高亮显示,我们可以调用 notifyItemChange(int position) 方法,这个方法调用会重新去绘制特定 position 上的 vIEwHolder 。hightlightItem() 在这个方法中设置我们想要改变 vIEwHolder 的位置,并调用 notifyItemChange(int position) 。然后在 onBindVIEwHolder() 中的设置可以判断当前是否需要高亮显示。

public voID hightlightItem(int position){     mHighlightposition = position;     notifyItemChanged(position-1);     notifyItemChanged(position);  }
private boolean isHighlight(int position){    return mHighlightposition == position;  }
@OverrIDe  public voID onBindVIEwHolder(VIEwHolder holder,int position) {    String word = mWordList.get(position);    holder.textVIEw.setText(word);    try {      if (!isHighlight(position)) {        holder.textVIEw.setTextSize(mOrdinarySize);        holder.textVIEw.setTextcolor(color.parsecolor(mOrdinarycolor));      } else if (isHighlight(position)) {        holder.textVIEw.setTextSize(mHighlightSize);        holder.textVIEw.setTextcolor(color.parsecolor(mHighlightcolor));      }    }catch ( Exception e){      e.printstacktrace();    }  }

3.对于歌词自动移动到当前语句:

本身我的想法就是多设置一个变量还是在这个 Runable() 里面进行 *** 作。但是一个很严重的问题,导致我连续几天一直想不到对策方法。由于手指离开屏幕的时候我使用 postDelayed() 方法有可能跟里面 Runable 里面使用的 postDelayed() 时间上可能会相互冲突,事件的执行情况就很有可能变得跟你想不一样。所以我们应该重新写一个 Runable() 来控制它的自动移动到当前位置。这样子的话各做各的事情,在写逻辑的时候会比较容易理顺。(当时没想好害我调了好久,一直都不对,哈哈).

/**   * 歌词自动滑动到特定位置任务   */  private static class autoBackWork implements Runnable{    @OverrIDe    public voID run() {    }   }

对于点击屏幕时就重写 ontouchEvent() 方法,

在 down 事件中 ,设置变量让 Runable () 事件中不滚动。

而对于歌词在离开屏幕后的一段时间后自动回到该位置。同样的,还是需要使用 smoothScrollBy() 方法移动。而移动多少呢?这是个问题。这个要分为四种情况:

第一种:

当前歌词在屏幕之外:由于我是打算将歌词移动到屏幕中的第四个位置。

那么我就需要找到屏幕中的第一个位置,还有当前显示的是哪一句歌词。

由于我是想要让他显示在屏幕的第四行,所以是相差 currentWord + 5 - firstposition 个位置 。

第二种:

当歌词在第四行之前但是在第一行之后。

第三种:

当歌词在第四行之后但是在最后一行之前。

第四种:

当歌词在最后一行之后。

其实我们就根据自己想要在显示在第几行来判断需要移动多少个位置。

我就不详说啦,具体看代码:

AutopullRecyclerVIEw autopullRecyclerVIEw = weakReference.get();      linearlayoutmanager linearlayoutmanager = (linearlayoutmanager) autopullRecyclerVIEw.getLayoutManager();      int firtposition = linearlayoutmanager.findFirstVisibleItemposition();      int lastposition = linearlayoutmanager.findLastVisibleItemposition();      if (firtposition>autopullRecyclerVIEw.currentWord){ // 第一种        autopullRecyclerVIEw.smoothScrollBy(0,-(firtposition - autopullRecyclerVIEw.currentWord + 5) * height);      }else if(firtposition+9>autopullRecyclerVIEw.currentWord){         if (firtposition+3>autopullRecyclerVIEw.currentWord){ // 第二种          int top = autopullRecyclerVIEw.getChildAt(autopullRecyclerVIEw.currentWord-firtposition).gettop();          autopullRecyclerVIEw.smoothScrollBy(0,-(4*height-top)); //--         }else{  // 第三种          int top = autopullRecyclerVIEw.getChildAt(autopullRecyclerVIEw.currentWord-firtposition).gettop();          autopullRecyclerVIEw.smoothScrollBy(0,top-(4*height)); //++        }      }else { // 第四种        autopullRecyclerVIEw.smoothScrollBy(0,(autopullRecyclerVIEw.currentWord - lastposition + 5) * height);      }     } }

4.显示中间线条以及显示该歌词时间

中间的 vIEw 不可能镶嵌在 RecyclerVIEw 中。所以我们要自定义一个布局来放自定义 RecyclerVIEw 和中间的 vIEw。

这个是整个的 xml 文件。

<?xml version="1.0" enCoding="utf-8"?><relativeLayout  xmlns:androID="http://schemas.androID.com/apk/res/androID"  androID:clickable="true"  androID:layout_wIDth="match_parent"  androID:layout_height="match_parent">  <com.example.administrator.animationvIEw.AutopullRecyclerVIEw    androID:ID="@+ID/auto_word"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent"/>  <relativeLayout    androID:layout_centerVertical="true"    androID:ID="@+ID/divIDe_line"    androID:layout_wIDth="match_parent"    androID:layout_height="wrap_content">  <ImageVIEw    androID:ID="@+ID/item_play_here"    androID:layout_marginStart="8dp"    androID:layout_centerVertical="true"    androID:src="@drawable/play"    androID:layout_wIDth="20dp"    androID:layout_height="20dp" />  <VIEw    androID:ID="@+ID/divIDe_line1"    androID:layout_marginEnd="48dp"    androID:layout_marginStart="4dp"    androID:layout_toEndOf="@+ID/item_play_here"    androID:layout_centerVertical="true"    androID:background="#E6E6FA"    androID:layout_wIDth="match_parent"    androID:layout_height="1px"/>  <TextVIEw    androID:ID="@+ID/time1"    androID:layout_marginEnd="4dp"    androID:layout_alignParentEnd="true"    androID:layout_centerVertical="true"    androID:textSize="12sp"    androID:layout_wIDth="wrap_content"    androID:layout_height="wrap_content" />  </relativeLayout></relativeLayout>

中间线的逻辑是当点击屏幕的时候显示出中间的线,离开屏幕的时候过一小段时间消失。也就是需要处理 down 事件和 up 事件 。但是我们在 RecyclerVIEw 中是处理了点击事件的,而且本身 RecyclerVIEw 就已经重写了拦截了该事件的。而且一般是父 VIEw 是不拦截事件的。那我们要怎么在里面设置 down 时间和 up 事件呢?我们怎么能让父 VIEw 接收到事件处理了一下同时最后又是子 vIEw 处理事件呢?

在此,我推荐一篇博客,里面很详细地介绍了事件分发处理机制的流程。

https://www.oudahe.com/p/26809/
https://www.oudahe.com/p/26810/

我先说一下结论吧。就是重写 dispatchtouchEvent() 。因为假如我们重写 ontouchEvent 的话,由于 RecyclerVIEw 处理了事件。是不会处理这个方法的。

而对于 dispatchtouchEvent() 方法 ,如果你是在子 vIEw 中处理事件。那么每次事件都会从 dispatchtouchEvent() 往下传递。具体原理可以看一下源码。

@OverrIDe  public boolean dispatchtouchEvent(MotionEvent ev) {    switch (ev.getAction()){      case MotionEvent.ACTION_DOWN:        performClick();        vIEw.setVisibility(VISIBLE);        show = true;        vIEw.setonClickListener(new OnClickListener() {          @OverrIDe          public voID onClick(VIEw vIEw) {            autopullRecyclerVIEw.setCometoPlay();            onClickListener.onClickListener(mCurrentTime);          }        });        break;      case MotionEvent.ACTION_UP:        vIEw.removeCallbacks(runnable);        vIEw.postDelayed(runnable,4000);        break;      default:        break;    }    return super.dispatchtouchEvent(ev);  }

对于显示歌词的时间,由于线条是在最中间的部分,我想要的是中间的线在哪一个 item 里面显示该 item 对应时间。对于最原先的做法,我是通过 firstposition 第一个看到的 item 变化时便变化时间。但是如果只是靠第一个可视化位置的话,由于中间线的位置,这样会导致恰好在中间的位置往上移动一点和往下移动一点是两个不同的时间变化。但是此时都是在同一 item 中 。所以我做的是去第二个可视化位置,判断该位置离 top 与 item/2 的距离的比较。从而解决问题。

最开始只是根据第一个可视化位置而显示的时间,但是显示时间变化的位置不对。

改了思路根据第二个可视化位置之后根据位移来判断。

private voID showTime(){    int height = autopullRecyclerVIEw.getMeasuredHeight() / 9;    int top = autopullRecyclerVIEw.getChildAt(1).gettop();    int currentposition = linearlayoutmanager.findFirstVisibleItemposition();    int position;    if (top > height / 2) {      position = currentposition;    } else {      position = currentposition + 1;    }

点击歌词跳转并且返回时间

点击歌词的时候改变高亮的位置和恢复原先的高亮的位置,并且通过回调返回时间。

case MotionEvent.ACTION_DOWN:        performClick();        vIEw.setVisibility(VISIBLE);        show = true;        vIEw.setonClickListener(new OnClickListener() {          @OverrIDe          public voID onClick(VIEw vIEw) {            autopullRecyclerVIEw.setCometoPlay();            onClickListener.onClickListener(mCurrentTime);          }        });        break;
/**   * 点击歌词滑动   */  public voID setCometoPlay(){    type =3;    cometoPlay = true;    lastWord = currentWord-1;    removeCallbacks(autopullWork);    post(autopullWork);  }

5.点击进度条跳转到相应位置

先调用 seekbar 的 onSeekbarchangelistener() 中监听方法,获取当前时间,根据时间获得当前应该所处的索引。然后调用自动移动滚动方法和高亮方法。

seekbar.setonSeekbarchangelistener(new Seekbar.OnSeekbarchangelistener() {      @OverrIDe      public voID onProgressChanged(Seekbar seekbar,int i,boolean b) {      }      @OverrIDe      public voID onStartTrackingtouch(Seekbar seekbar) {      }      @OverrIDe      public voID onStopTrackingtouch(Seekbar seekbar) {        int progress = seekbar.getProgress();    // 获取当前进度        worldrelativeLayout.setChangeTime(progress);      }    });

这次做一个自定义 VIEw 控件,让我有好几点感触,我记录一下,一方面是希望告诫自己,一方面也算是分享给他人吧。

当你要做某个控件或项目的时候,不要着急着动笔。要先想好整个流程和框架。这方面先考虑清楚在动笔写。你的逻辑一定要现在白纸上实现一遍后才开始敲代码。就像我之前做的项目还有这次这个控件,我都比较着急写。等到开始运行的时候,出现了跟我想的不太一样。那我又根据结果去改代码,但是这可能只是代表着某一个方面而已,下次有可能其他方面出问题了。这样你就会被问题牵着走,而不能从整体上去看问题。

事情总是一点一点一点地解决。在写代码的过程中,总有我们当时不知道的,不会的,不知道怎么做的。但是也正是因为这些东西我们才会扩展了更多,丰富了许多,从另一个方面讲,这也是在跳出舒适区吧,所以不要慌张,作为工程师,或者说作为生活的人,我们都需要有耐心和热情。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。

您可能感兴趣的文章:比较完整的android MP3 LRC歌词滚动高亮显示(附源码) 总结

以上是内存溢出为你收集整理的Android 基于RecyclerView实现的歌词滚动自定义控件全部内容,希望文章能够帮你解决Android 基于RecyclerView实现的歌词滚动自定义控件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1142879.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存