欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

android阅读器长按选择文字功能实现代码

程序员文章站 2023-01-26 20:30:51
前言: 有时候我们需要实现长按选择文字功能,比如阅读器一般都有这个功能,有时候某个自定义控件上可能就有这种需求,如何实现呢?正好最近还算闲,想完善一下自己写的那个轻量级的t...

前言: 有时候我们需要实现长按选择文字功能,比如阅读器一般都有这个功能,有时候某个自定义控件上可能就有这种需求,如何实现呢?正好最近还算闲,想完善一下自己写的那个轻量级的txt文件阅读器(比如这个长按选择文字的功能就想加进去)。于是花了两三天时间,实现了这个功能,效果还是不错的。

首先先看看效果图吧:

android阅读器长按选择文字功能实现代码

授人以鱼不如授人以渔,下面具体实现原理的教程。

1.实现原理

原理其实也不难,简单总结就是:绘制文字时把显示的文字的坐标记录下来(记录文字的左上右上左下右下四个点坐标),作用就是为了计算滑动范围。执行了长按事件后,通过按的坐标,在当前显示的文字数据中根据点的坐标查找到按着的字,得到长按后选择的位置与文字。当执行滑动选择时,根据手指滑动的位置坐标与当前显示的文字数据匹配来确定选择的范围与文字。

2.具体实现

a.封装

为了便于操作,首先对显示可见的字符、显示的行数据进行封装。

showchar:

public class showchar {//可见字符数据封装

  public char chardata ;//字符数据
  public boolean selected =false;//当前字符是否被选中
  public point topleftposition = null;
  public point toprightposition = null;
  public point bottomleftposition = null;
  public point bottomrightposition = null;

  public float charwidth = 0;//字符宽度
  public int index = 0;//当前字符位置


}

showline :

public class showline {//显示的行数据
  public list<showchar> charsdata = null;

  /**
   *@return
   *--------------------
   *todo 获取该行的数据
   *--------------------
   */
  public string getlinedata(){
    string linedata = "";  
    if(charsdata==null||charsdata.size()==0) return linedata;
    for(showchar c:charsdata){
      linedata = linedata+c.chardata;
    }
    return linedata;
  }
}

说明:阅读器显示数据是一行一行的,每行都有不确定数量的字符,每个字符有自己的信息,比如字符宽度、字符在数据集合中的下标等。绘制时,通过绘制showline 去绘制每行的数据。

b.数据转化

绘制前,我们需要先要把数据转化为上面封装的格式数据以便我们使用。这个要怎么做?因为我们需要将字符串转化为一行一行的数据,同时每个字符的字符宽度需要测量出来。如果对绘制比较熟悉的话,应该会知道系统有个paint.measuretext可以用来测量字符的宽度,这里可以借助这个来实现测量字符的宽度,同时转化为我们想要行数据。

首先,写个方法,可以将传入的字符串转化为行数据:

  /**
   *@param cs 
   *@param medsurewidth 行测量的最大宽度
   *@param textpadding 字符间距
   *@param paint 测量的画笔
   *@return 如果cs为空或者长度为0,返回null
   *--------------------
   *todo 
   *--------------------
   */
  public static breakresult breaktext(char[] cs, float medsurewidth, float textpadding, paint paint) {  
    if(cs==null||cs.length==0){return null;}
    breakresult breakresult = new breakresult();    
    breakresult.showchars = new arraylist<showchar>();
    float width = 0;

    for (int i = 0, size = cs.length; i < size; i++) {
      string mesasrustr = string.valueof(cs[i]);
      float charwidth = paint.measuretext(mesasrustr);

      if (width <= medsurewidth && (width + textpadding + charwidth) > medsurewidth) {
        breakresult.chartnums = i;
        breakresult.isfullline = true;
        return breakresult;
      }

      showchar showchar = new showchar();
      showchar.chardata = cs[i];
      showchar.charwidth = charwidth;     
      breakresult.showchars.add(showchar);
      width += charwidth + textpadding;
    }

    breakresult.chartnums = cs.length;
    return breakresult;
  }



public static breakresult breaktext(string text, float medsurewidth, float textpadding, paint paint) {
    if (textutils.isempty(text)) {
      int[] is = new int[2];
      is[0] = 0;
      is[1] = 0;
      return null;
    }
    return breaktext(text.tochararray(), medsurewidth, textpadding, paint);

  }

说明: breakresult 是对测量结果的简单封装:

public class breakresult {

  public int chartnums = 0;//测量了的字符数
  public boolean isfullline = false;//是否满一行了
  public list<showchar> showchars = null;//测量了的字符数据

  public boolean hasdata() {
    return showchars != null && showchars.size() > 0;
  }
}

完成了上面的工作后,我们可以实现将我们显示的数据转化为需要的数据了。

下面是我们测试显示的字符串:

string textdata = "jeh话说天下大势,分久必合,合久必分。周末七国分争,并入于秦。及秦灭之后,楚、汉分争,又并入于汉。汉朝自高祖斩白蛇而起义,一统天下,后来光武中兴,传至献帝,遂分为三国。推其致乱之由,殆始于桓、灵二帝。桓帝禁锢善类,崇信宦官。及桓帝崩,灵帝即位,大将军窦武、太傅陈蕃共相辅佐。时有宦官曹节等弄权,窦武、陈蕃谋诛之,机事不密,反为所害,中涓自此愈横"
      +

  "建宁二年四月望日,帝御温德殿。方升座,殿角狂风骤起。只见一条大青蛇,从梁上飞将下来,蟠于椅上。帝惊倒,左右急救入宫,百官俱奔避。须臾,蛇不见了。忽然大雷大雨,加以冰雹,落到半夜方止,坏却房屋无数。建宁四年二月,洛阳地震;又海水泛溢,沿海居民,尽被大浪卷入海中。光和元年,雌鸡化雄。六月朔,黑气十余丈,飞入温德殿中。秋七月,有虹现于玉堂;五原山岸,尽皆崩裂。种种不祥,非止一端。帝下诏问群臣以灾异之由,议郎蔡邕上疏,以为堕鸡化,乃妇寺干政之所致,言颇切直。帝览奏叹息,因起更衣。曹节在后窃视,悉宣告左右;遂以他事陷邕于罪,放归田里。后张让、赵忠、封、段、曹节、侯览、蹇硕、程旷、夏恽、郭胜十人朋比为奸,号为“十常侍”。帝尊信张让,呼为“阿父”。朝政日非,以致天下人心思乱,盗贼蜂起。";

我们需要将这段字符串转化为行数据,在初始化数据的操作,下面是初始化数据的方法initdata:

list<showline> mlinsedata = null;

  private void initdata(int viewwidth, int viewheight) {
    if (mlinsedata == null) {
      //将数据转化为行数据
      mlinsedata = breaktext(viewwidth, viewheight);
    }

  }

  private list<showline> breaktext(int viewwidth, int viewheight) {
    list<showline> showlines = new arraylist<showline>();
    while (textdata.length() > 0) {
      breakresult breakresult = textbreakutil.breaktext(textdata, viewwidth, 0, mpaint);

      if (breakresult != null && breakresult.hasdata()) {
        showline showline = new showline();
        showline.charsdata = breakresult.showchars;
        showlines.add(showline);

      } else {
        break;
      }

      textdata = textdata.substring(breakresult.chartnums);

    }

    int index = 0;
    for (showline l : showlines) {
      for (showchar c : l.charsdata) {
        c.index = index++;
      }
    }
    return showlines;
  }

只要调用initdata方法,我们就可以将textdata的数据转为显示的行数据linedata集合mlinsedata 。

值得注意的是,调用这个方法需求知道控件的长宽,根据view的生命周期,我们可以在onmeasures里面调用这个方法进行初始化。

@override
  protected void onmeasure(int widthmeasurespec, int heightmeasurespec) {
    super.onmeasure(widthmeasurespec, heightmeasurespec);
    int viewwidth = getmeasuredwidth();
    int viewheight = getmeasuredheight();
    initdata(viewwidth, viewheight);
  }

数据转化完成后,接着我们需要把数据一行一行的绘制出来:

  @override
  protected void ondraw(canvas canvas) {
    super.ondraw(canvas);  

    lineyposition = textheight + linepadding;//第一行显示的y坐标
    for (showline line : mlinsedata) {
      drawlinetext(line, canvas);//绘制每一行,并记录每个字符的坐标
    }
  }

drawlinetext方法:

private void drawlinetext(showline line, canvas canvas) {
    canvas.drawtext(line.getlinedata(), 0, lineyposition, mpaint);

    float leftposition = 0;
    float rightposition = 0;
    float bottomposition = lineyposition + mpaint.getfontmetrics().descent;

    for (showchar c : line.charsdata) {
      rightposition = leftposition + c.charwidth;
      point tlp = new point();
      c.topleftposition = tlp;
      tlp.x = (int) leftposition;
      tlp.y = (int) (bottomposition - textheight);

      point blp = new point();
      c.bottomleftposition = blp;
      blp.x = (int) leftposition;
      blp.y = (int) bottomposition;

      point trp = new point();
      c.toprightposition = trp;
      trp.x = (int) rightposition;
      trp.y = (int) (bottomposition - textheight);

      point brp = new point();
      c.bottomrightposition = brp;
      brp.x = (int) rightposition;
      brp.y = (int) bottomposition;
      leftposition = rightposition;

    }
    lineyposition = lineyposition + textheight + linepadding;
  }

运行一下,目前显示效果如下:

android阅读器长按选择文字功能实现代码

实现这些后,接下来需要实现长按选择功能以及滑动选择文字功能。如何实现长按呢,自己写肯定可以,只是也太麻烦了,所以我们这里借助系统提供的长按事件就可以。我实现的思路是这样的,首先先将事件处理模式分四种:

private enum mode {

    normal, //正常模式
    pressselecttext,//长按选中文字
    selectmoveforward, //向前滑动选中文字
    selectmoveback//向后滑动选中文字
  }

在没有做任何处理情况下是normal模式,如果手势发生了,down事件触发,记录当前down的坐标,如果用户一直按着,必然触发长按事件,模式转化为pressselecttext,通过记录的down的坐标,去数据集合中找到当前长按的字符,绘画出选择的文字的背景。

思路是这样,那么就干吧。首先注册长按事件,在初始化使注册该事件。

private void init() {
    mpaint = new paint();
    mpaint.setantialias(true);
    mpaint.settextsize(29);

    mtextselectpaint = new paint();
    mtextselectpaint.setantialias(true);
    mtextselectpaint.settextsize(19);
    mtextselectpaint.setcolor(textselectcolor);

    mborderpointpaint = new paint();
    mborderpointpaint.setantialias(true);
    mborderpointpaint.settextsize(19);
    mborderpointpaint.setcolor(borderpointcolor);

    fontmetrics fontmetrics = mpaint.getfontmetrics();
    textheight = math.abs(fontmetrics.ascent) + math.abs(fontmetrics.descent);

    setonlongclicklistener(mlongclicklistener);

  }
private onlongclicklistener mlongclicklistener = new onlongclicklistener() {

    @override
    public boolean onlongclick(view v) {

      if (mcurrentmode == mode.normal) {
        if (down_x > 0 && down_y > 0) {// 说明还没释放,是长按事件
          mcurrentmode = mode.pressselecttext;
          postinvalidate();//刷新
        }
      }
      return false;
    }
  };

这里 down_x , down_y ; 初始化值都是-1,如果执行了down事件后它们肯定大于0,如果执行了action_up事件,释放设置值为-1,只是为了判断使用而已。

然后ondraw中需要判断一下并绘制选择的文字了。

@override
  protected void ondraw(canvas canvas) {
    super.ondraw(canvas);

    lineyposition = textheight + linepadding;//第一行的y坐标
    for (showline line : mlinsedata) {
      drawlinetext(line, canvas);//绘制每一
    }

    if (mcurrentmode != mode.normal) {
      drawselecttext(canvas);//如果不是正常的话,绘制选择
    }
  }
private void drawselecttext(canvas canvas) {
    if (mcurrentmode == mode.pressselecttext) {
      drawpressselecttext(canvas);//绘制长按选择的字符
    } else if (mcurrentmode == mode.selectmoveforward) {//向前滑动选择
      drawmoveselecttext(canvas);//绘制滑动时选择的文字背景
    } else if (mcurrentmode == mode.selectmoveback) {//向后滑动选择
      drawmoveselecttext(canvas);//绘制滑动时选择的文字背景
    }
  }

这时如果执行了长按事件,mcurrentmode == mode.pressselecttext,将执行绘制长按选择的字符。

     //绘制长按选中的数据
private void drawpressselecttext(canvas canvas) {
    //根据按的坐标检测找到长按的字符
    showchar p = detectpressshowchar(down_x, down_y);

    if (p != null) {// 找到了选择的字符
      firstselectshowchar = lastselectshowchar = p;
      mselecttextpath.reset();
      mselecttextpath.moveto(p.topleftposition.x, p.topleftposition.y);
      mselecttextpath.lineto(p.toprightposition.x, p.toprightposition.y);
      mselecttextpath.lineto(p.bottomrightposition.x, p.bottomrightposition.y);
      mselecttextpath.lineto(p.bottomleftposition.x, p.bottomleftposition.y);
      //绘制文字背景
      canvas.drawpath(mselecttextpath, mtextselectpaint);
      //绘制边界的线与指示块
      drawborderpoint(canvas);

    }
  }

检测点击点所在的字符方法:

  /**
   *@param down_x2
   *@param down_y2
   *@return
   *--------------------
   *todo 检测获取按压坐标所在位置的字符,没有的话返回null
   *--------------------
   */
  private showchar detectpressshowchar(float down_x2, float down_y2) {

    for (showline l : mlinsedata) {
      for (showchar c : l.charsdata) {
        if (down_y2 > c.bottomleftposition.y) {
          break;// 说明是在下一行
        }
        if (down_x2 >= c.bottomleftposition.x && down_x2 <= c.bottomrightposition.x) {
          return c;
        }

      }
    }

    return null;
  }

基本上长按事件操作都完成了,我们运行长按文字看看效果:

绘制了长按选择的字符后,我们需要实现按着左右的指示块进行左右或者上下滑动去选择文字。为了便于操作,向上滑动与向下滑动都有限制滑动范围,如下图:

android阅读器长按选择文字功能实现代码

蓝色的区域是手指按着后触发允许滑动。按着左边的小蓝色区域,mcurrentmode == mode.selectmoveforward,允许向上滑动选择文字,就是手指滑动坐标滑动到黄色区域有效。按着右边的小蓝色区域,mcurrentmode == mode.selectmoveback,允许向下滑动选择文字,就是手指滑动到绿色区域有效。

选择时,我们只会记录两个字符,就是选择的文字的开始字符与结束字符:

private showchar firstselectshowchar = null;
private showchar lastselectshowchar = null;

注意的是当长按选择一个字符后:firstselectshowchar = lastselectshowchar;

所以整个过程是:滑动时,如果按着左边的蓝色区域,将允许向前滑动,这时mcurrentmode == mode.selectmoveforward,向前滑动即在黄色区域滑动,这时就可以根据手指滑动坐标找到滑动后的firstselectshowchar ,然后刷新界面。向下滑动同理。

下面是代码实现:

先在action_down里判断是向下滑动还是向下滑动,如果都不是,重置,使长按选择的文字恢复原样。

case motionevent.action_down:
      down_x = tounch_x;
      down_y = tounch_y;

      if (mcurrentmode != mode.normal) {
        boolean istryselectmove = checkiftryselectmove(down_x, down_y);

        if (!istryselectmove) {// 如果不是准备滑动选择文字,转变为正常模式,隐藏选择框
          mcurrentmode = mode.normal;
          invalidate();
        }
      }

      break;

在滑动时判断,如果是向上滑动,检测获取当前滑动时的firstselectshowchar ;如果是向下滑动,检测获取当前滑动时的lastselectshowchar ,然后刷新界面。

case motionevent.action_move:
      if (mcurrentmode == mode.selectmoveforward) {
        if (canmoveforward(event.getx(), event.gety())) {// 判断是否是向上移动
          showchar firstselectchar = detectpressshowchar(event.getx(), event.gety());//获取当前滑动坐标的下的字符
          if (firstselectchar != null) {
            firstselectshowchar = firstselectchar;
            invalidate();
          } 

        }

      } else if (mcurrentmode == mode.selectmoveback) {

        if (canmoveback(event.getx(), event.gety())) {// 判断是否可以向下移动         
          showchar lastselectchar = detectpressshowchar(event.getx(), event.gety());//获取当前滑动坐标的下的字符
          if (lastselectchar != null) {
            lastselectshowchar = lastselectchar;
            invalidate();
          } 

        } 
      }

      break;

判断是否向上滑动方法:

private boolean canmoveforward(float tounchx, float tounchy) {

    path p = new path();
    p.moveto(lastselectshowchar.toprightposition.x, lastselectshowchar.toprightposition.y);
    p.lineto(getwidth(), lastselectshowchar.toprightposition.y);
    p.lineto(getwidth(), 0);
    p.lineto(0, 0);
    p.lineto(0, lastselectshowchar.bottomrightposition.y);
    p.lineto(lastselectshowchar.bottomrightposition.x, lastselectshowchar.bottomrightposition.y);
    p.lineto(lastselectshowchar.toprightposition.x, lastselectshowchar.toprightposition.y);

    return computeregion(p).contains((int) tounchx, (int) tounchy);
  }

判断是否向下滑动:

private boolean canmoveback(float tounchx, float tounchy) {

    path p = new path();
    p.moveto(firstselectshowchar.topleftposition.x, firstselectshowchar.topleftposition.y);
    p.lineto(getwidth(), firstselectshowchar.topleftposition.y);
    p.lineto(getwidth(), getheight());
    p.lineto(0, getheight());
    p.lineto(0, firstselectshowchar.bottomleftposition.y);
    p.lineto(firstselectshowchar.bottomleftposition.x, firstselectshowchar.bottomleftposition.y);
    p.lineto(firstselectshowchar.topleftposition.x, firstselectshowchar.topleftposition.y);

    return computeregion(p).contains((int) tounchx, (int) tounchy);
  }


private region computeregion(path path) {
    region region = new region();
    rectf f = new rectf();
    path.computebounds(f, true);
    region.setpath(path, new region((int) f.left, (int) f.top, (int) f.right, (int) f.bottom));
    return region;
  }

手势操作处理完成了,剩下的就是在ondraw时判断到mcurrentmode == mode.selectmoveforward或者mcurrentmode == mode.selectmoveback绘制出选择的范围背景。

private void drawselecttext(canvas canvas) {
    if (mcurrentmode == mode.pressselecttext) {
      drawpressselecttext(canvas);//绘制长按选择的字符
    } else if (mcurrentmode == mode.selectmoveforward) {//向前滑动选择
      drawmoveselecttext(canvas);//绘制滑动时选择的文字背景
    } else if (mcurrentmode == mode.selectmoveback) {//向后滑动选择
      drawmoveselecttext(canvas);//绘制滑动时选择的文字背景
    }
  }

private void drawmoveselecttext(canvas canvas) {
    if (firstselectshowchar == null || lastselectshowchar == null)     return;
    getselectdata();//获取选择字符的数据,转化为选择的行数据
    drawseletlines(canvas);//绘制选择的行数据
    drawborderpoint(canvas);//绘制出边界的方块或圆点
  }

private void drawseletlines(canvas canvas) 
    drawoaleseletlinesbg(canvas);
  }

  private void drawoaleseletlinesbg(canvas canvas) {// 绘制椭圆型的选中背景
    for (showline l : mselectlines) {      
      if (l.charsdata != null && l.charsdata.size() > 0) {        
        showchar fistchar = l.charsdata.get(0);
        showchar lastchar = l.charsdata.get(l.charsdata.size() - 1);

        float fw = fistchar.charwidth;
        float lw = lastchar.charwidth;

        rectf rect = new rectf(fistchar.topleftposition.x, fistchar.topleftposition.y,
            lastchar.toprightposition.x, lastchar.bottomrightposition.y);

        canvas.drawroundrect(rect, fw / 2,
             textheight / 2, mtextselectpaint);

      }
    }
  }

基本完成了,运行一下,效果还是不错的。

android阅读器长按选择文字功能实现代码

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