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

Android自定义竖排TextView实现实例

程序员文章站 2023-12-01 15:27:40
android自定义竖排textview实现实例 前言: 之前做联系人模块的时候遇到一个左侧索引控件,里面的字符都是竖直方向上排列的。当时这个控件是用一个图片代替的。现...

android自定义竖排textview实现实例

前言:

之前做联系人模块的时候遇到一个左侧索引控件,里面的字符都是竖直方向上排列的。当时这个控件是用一个图片代替的。现在想来如果索引的字符变更了,那么就得重新更换图片了,感觉很麻烦。今天通过一个自定义textview实现类似的功能。先上效果图:

Android自定义竖排TextView实现实例

汉字和英文字符都可以竖直排列。结合联系人界面,可以将左侧的索引改成联系人的姓氏。

上代码:

测试用的activity。

public class mainactivity extends activity implements ontouchlistener { 
 
  private verticaltextview mverticaltextview; 
 
  private textview mtextview; 
 
  private int mtextcount; 
 
  @override 
  protected void oncreate(bundle savedinstancestate) { 
    super.oncreate(savedinstancestate); 
    requestwindowfeature(window.feature_no_title); 
    setcontentview(r.layout.activity_main); 
 
    mverticaltextview = (verticaltextview) findviewbyid(r.id.vertical_tv); 
    mtextview = (textview) findviewbyid(r.id.content_tx); 
    mtextcount = mverticaltextview.gettext().length(); 
    mverticaltextview.setontouchlistener(this); 
    mtextview.setbackgroundcolor(color.ltgray); 
  } 
 
  @override 
  public boolean ontouch(view v, motionevent event) { 
    float verticaltextviewheight = mverticaltextview.getheight(); 
    float y = event.gety(); 
    int sectionposition = (int) math.ceil((y / verticaltextviewheight) 
        / (1f / mtextcount)) - 1; 
    if (sectionposition < 0) { 
      sectionposition = 0; 
    } else if (sectionposition >= mtextcount) { 
      sectionposition = mtextcount - 1; 
    } 
    string sectionletter = string.valueof(mverticaltextview.gettext() 
        .charat(sectionposition)); 
    switch (event.getaction()) { 
    case motionevent.action_down: 
      mtextview.setvisibility(view.visible); 
      mtextview.settext(sectionletter); 
      break; 
    case motionevent.action_move: 
      mtextview.settext(sectionletter); 
      mtextview.setvisibility(view.visible); 
      break; 
 
    case motionevent.action_up: 
      mtextview.setvisibility(view.invisible); 
    default: 
      break; 
 
    } 
 
    return true; 
  } 
} 

这里主要说下如何通过点击或者滑动左侧的自定义textview,将索引值取出来。主要的实现点在代码:

float verticaltextviewheight = mverticaltextview.getheight(); 
float y = event.gety(); 
int sectionposition = (int) math.ceil((y / verticaltextviewheight) 
    / (1f / mtextcount)) - 1; 
if (sectionposition < 0) { 
  sectionposition = 0; 
} else if (sectionposition >= mtextcount) { 
  sectionposition = mtextcount - 1; 
} 
string sectionletter = string.valueof(mverticaltextview.gettext() 
    .charat(sectionposition)); 

这里verticaltextviewheight 是整个控件的高度,y按下控件后的y轴坐标,然后通过一个比例式将点击位置换算成竖排索引字符集中的对应字符位置,通过这个位置就可以判断出点击的是哪一个索引字符了。这里要注意比例式中的运算要转成浮点型计算,否则无法得到正确的索引值,楼主当时就在此深深的坑过。

下面是重点自定义textview的实现代码:

public class verticaltextview extends textview { 
 
  /** 
   * 绘制整个verticaltextview区域大小的画笔 
   */ 
  private paint mpaint; 
  /** 
   * 绘制每个竖排字符间的间隔横线的画笔 
   */ 
  private paint linepaint; 
  /** 
   * 绘制单个字符的画笔 
   */ 
  private paint charpaint; 
 
  private char[] indexs; 
 
  private int textcount; 
 
  private string textstring; 
 
  public verticaltextview(context context, attributeset attrs) { 
    this(context, attrs, 0); 
  } 
 
  public verticaltextview(context context, attributeset attrs, int defstyle) { 
    super(context, attrs, defstyle); 
 
    mpaint = new paint(); 
 
    linepaint = new paint(); 
 
    charpaint = new paint(); 
 
    textstring = gettext().tostring(); 
    indexs = getkeychar(textstring); 
    textcount = textstring.tochararray().length; 
  } 
 
  @override 
  protected void ondraw(canvas canvas) { 
    float childheight = getheight() / textcount; 
    if (textutils.isempty(textstring)) 
      return; 
    canvas.drawrect(0, 0, getwidth(), getheight(), mpaint); 
    canvas.drawcolor(color.gray); 
 
    linepaint.setcolor(color.black); 
 
    charpaint.settextsize((float) (getwidth() * 0.75)); 
    charpaint.settextalign(paint.align.center); 
 
    fontmetrics fm = charpaint.getfontmetrics(); 
    for (int i = 0; i < textcount; i++) { 
      canvas.drawline(0, i * childheight, getwidth(), i * childheight, 
          linepaint); 
      canvas.drawtext( 
          string.valueof(indexs[i]), 
          getwidth() / 2, 
          (float) (((i + 0.5) * childheight) - (fm.ascent + fm.descent) / 2), 
          charpaint); 
    } 
  } 
 
  protected char[] getkeychar(string str) { 
    char[] keys = new char[str.length()]; 
    for (int i = 0; i < keys.length; i++) { 
      keys[i] = str.charat(i); 
    } 
    return keys; 
  } 
} 

代码也很简单,复写了ondraw函数。将要显示的字符串拆分成一个个字符放在一个数组中。通过一个循环遍历这个数组,挨个将他们绘制出来。精华只有一句:

canvas.drawtext(string.valueof(indexs[i]),getwidth() / 2,(float) (((i + 0.5) * childheight) -  
 
(fm.ascent + fm.descent) / 2 
 
),charpaint); 

第一个参数是要绘制的字符,第二个参数绘制字符的x轴起始点,第三个参数比较复杂,重点说下前半部分

(i + 0.5) * childheight 

表示每个字符区域高度的一办所在的y轴坐标,后半部分

(fm.ascent + fm.descent) / 2 

这个是个矫正值,如果不跟上它,绘制出来的字符会整体靠上。这里要参考字符的绘制原理,明白了后就很简单了。这里我就不在过多叙述。

最后是测试activity的布局文件:

<framelayout xmlns:android="http://schemas.android.com/apk/res/android" 
  xmlns:tools="http://schemas.android.com/tools" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" > 
<com.example.demoindextextview.widget.verticaltextview 
    android:id="@+id/vertical_tv" 
    android:layout_width="20dp" 
    android:layout_height="match_parent" 
    android:layout_gravity="right" 
    android:text="abcdefgsdfsf你好吗sdfsdklmnopqrstuvwxyz" /> 
 
<textview  
  android:id="@+id/content_tx" 
  android:layout_gravity="center" 
  android:gravity="center" 
  android:layout_height="50dp" 
  android:layout_width="50dp" 
  android:textsize="30sp" 
  android:visibility="invisible"/> 
   
</framelayout> 

当字符集变化后依然很好的适应,效果图:

Android自定义竖排TextView实现实例

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!