Android实现字母导航控件的示例代码
今天分享一个以前实现的通讯录字母导航控件,下面自定义一个类似通讯录的字母导航 view,可以知道需要自定义的几个要素,如绘制字母指示器、绘制文字、触摸监听、坐标计算等,自定义完成之后能够达到的功能如下:
- 完成列表数据与字母之间的相互联动;
- 支持布局文件属性配置;
- 在布局文件中能够配置相关属性,如字母颜色、字母字体大小、字母指示器颜色等属性。
主要内容如下:
- 自定义属性
- measure测量
- 坐标计算
- 绘制
- 显示效果
自定义属性
在 value 下面创建 attr.xml ,在里面配置需要自定义的属性,具体如下:
<?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="letterview"> <!--字母颜色--> <attr name="lettertextcolor" format="color" /> <!--字母字体大小--> <attr name="lettertextsize" format="dimension" /> <!--整体背景--> <attr name="lettertextbackgroundcolor" format="color" /> <!--是否启用指示器--> <attr name="letterenableindicator" format="boolean" /> <!--指示器颜色--> <attr name="letterindicatorcolor" format="color" /> </declare-styleable> </resources>
然后在相应的构造方法中获取这些属性并进行相关属性的设置,具体如下:
public letterview(context context, @nullable attributeset attrs) { super(context, attrs); //获取属性 typedarray array = context.obtainstyledattributes(attrs, r.styleable.letterview); int lettertextcolor = array.getcolor(r.styleable.letterview_lettertextcolor, color.red); int lettertextbackgroundcolor = array.getcolor(r.styleable.letterview_lettertextbackgroundcolor, color.white); int letterindicatorcolor = array.getcolor(r.styleable.letterview_letterindicatorcolor, color.parsecolor("#333333")); float lettertextsize = array.getdimension(r.styleable.letterview_lettertextsize, 12); enableindicator = array.getboolean(r.styleable.letterview_letterenableindicator, true); //默认设置 mcontext = context; mletterpaint = new paint(); mletterpaint.settextsize(lettertextsize); mletterpaint.setcolor(lettertextcolor); mletterpaint.setantialias(true); mletterindicatorpaint = new paint(); mletterindicatorpaint.setstyle(paint.style.fill); mletterindicatorpaint.setcolor(letterindicatorcolor); mletterindicatorpaint.setantialias(true); setbackgroundcolor(lettertextbackgroundcolor); array.recycle(); }
measure测量
要想精确的控制自定义的尺寸以及坐标,必须要测量出当前自定义 view 的宽高,然后才可以通过测量到的尺寸计算相关坐标,具体测量过程就是继承 view 重写 ommeasure() 方法完成测量,关键代码如下:
@override protected void onmeasure(int widthmeasurespec, int heightmeasurespec) { super.onmeasure(widthmeasurespec, heightmeasurespec); //获取宽高的尺寸大小 int widthsize = measurespec.getsize(widthmeasurespec); int heightsize = measurespec.getsize(heightmeasurespec); //wrap_content默认宽高 @suppresslint("drawallocation") rect mrect = new rect(); mletterpaint.gettextbounds("a", 0, 1, mrect); mwidth = mrect.width() + dptopx(mcontext, 12); int mheight = (mrect.height() + dptopx(mcontext, 5)) * letters.length; if (getlayoutparams().width == viewgroup.layoutparams.wrap_content && getlayoutparams().height == viewgroup.layoutparams.wrap_content) { setmeasureddimension(mwidth, mheight); } else if (getlayoutparams().width == viewgroup.layoutparams.wrap_content) { setmeasureddimension(mwidth, heightsize); } else if (getlayoutparams().height == viewgroup.layoutparams.wrap_content) { setmeasureddimension(widthsize, mheight); } mwidth = getmeasuredwidth(); int averageitemheight = getmeasuredheight() / 28; int moffset = averageitemheight / 30; //界面调整 mitemheight = averageitemheight + moffset; }
坐标计算
自定义 view 实际上就是在 view 上找到合适的位置,将自定义的元素有序的绘制出来即可,绘制过程最困难的就是如何根据具体需求计算合适的左边,至于绘制都是 api 的调用,只要坐标位置计算好了,自定义 view 绘制这一块应该就没有问题了,下面的图示主要是标注了字母指示器绘制的中心位置坐标的计算以及文字绘制的起点位置计算,绘制过程中要保证文字在指示器中心位置,参考如下:
绘制
自定义 view 的绘制操作都是在 ondraw() 方法中进行的,这里主要使用到圆的绘制以及文字的绘制,具体就是 drawcircle() 和 drawtext() 方法的使用,为避免文字被遮挡,需绘制字母指示器,然后再绘制字母,代码参考如下:
@override protected void ondraw(canvas canvas) { //获取字母宽高 @suppresslint("drawallocation") rect rect = new rect(); mletterpaint.gettextbounds("a", 0, 1, rect); int letterwidth = rect.width(); int letterheight = rect.height(); //绘制指示器 if (enableindicator){ for (int i = 1; i < letters.length + 1; i++) { if (mtouchindex == i) { canvas.drawcircle(0.5f * mwidth, i * mitemheight - 0.5f * mitemheight, 0.5f * mitemheight, mletterindicatorpaint); } } } //绘制字母 for (int i = 1; i < letters.length + 1; i++) { canvas.drawtext(letters[i - 1], (mwidth - letterwidth) / 2, mitemheight * i - 0.5f * mitemheight + letterheight / 2, mletterpaint); } }
到此为止,可以说 view 的基本绘制结束了,现在使用自定义的 view 界面能够显示出来了,只是还没有添加相关的事件操作,下面将在 view 的触摸事件里实现相关逻辑。
touch事件处理
为了判断手指当前所在位置对应的是哪一个字母,需要获取当前触摸的坐标位置来计算字母索引,重新 ontouchevent() 方法,监听 motionevent.action_down、motionevent.action_move 来计算索引位置,监听 motionevent.action_up 将获得结果回调出去,具体参考如下:
@override public boolean ontouchevent(motionevent event) { switch (event.getaction()) { case motionevent.action_down: case motionevent.action_move: istouch = true; int y = (int) event.gety(); log.i("ontouchevent","--y->" + y + "-y-dp-->" + densityutil.px2dp(getcontext(), y)); int index = y / mitemheight; if (index != mtouchindex && index < 28 && index > 0) { mtouchindex = index; log.i("ontouchevent","--mtouchindex->" + mtouchindex + "--position->" + mtouchindex); } if (monletterchangelistener != null && mtouchindex > 0) { monletterchangelistener.onletterlistener(letters[mtouchindex - 1]); } invalidate(); break; case motionevent.action_up: istouch = false; if (monletterchangelistener != null && mtouchindex > 0) { monletterchangelistener.onletterdismisslistener(); } break; } return true; }
到此为止,view 的自定义关键部分基本完成。
数据组装
字母导航的基本思路是将某个需要与字母匹配的字段转换为对应的字母,然后按照该字段对数据进行排序,最终使得通过某个数据字段的首字母就可以批匹配到相同首字母的数据了,这里将汉字转化为拼音使用的是 pinyin4j-2.5.0.jar ,然后对数据项按照首字母进行排序将数据展示到出来即可,汉字装换为拼音如下:
//汉字转换为拼音 public static string getchinesetopinyin(string chinese) { stringbuilder builder = new stringbuilder(); hanyupinyinoutputformat format = new hanyupinyinoutputformat(); format.setcasetype(hanyupinyincasetype.uppercase); format.settonetype(hanyupinyintonetype.without_tone); char[] chararray = chinese.tochararray(); for (char achararray : chararray) { if (character.isspacechar(achararray)) { continue; } try { string[] pinyinarr = pinyinhelper.tohanyupinyinstringarray(achararray, format); if (pinyinarr != null) { builder.append(pinyinarr[0]); } else { builder.append(achararray); } } catch (badhanyupinyinoutputformatcombination badhanyupinyinoutputformatcombination) { badhanyupinyinoutputformatcombination.printstacktrace(); builder.append(achararray); } } return builder.tostring(); }
至于数据排序使用 comparator 接口即可
显示效果
显示效果如下:
到此这篇关于android实现字母导航控件的示例代码的文章就介绍到这了,更多相关android字母导航控件内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!