博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
设置EditText光标位置
阅读量:5734 次
发布时间:2019-06-18

本文共 1504 字,大约阅读时间需要 5 分钟。

转载请注明出处。

Android中有很多可编辑的弹出框,其中有些是让我们来修改其中的字符,这时光标位置定位在哪里呢?

刚刚解了一个bug是关于这个光标的位置的,似乎Android原生中这种情况是把光标定位到字符串的最前面。需求是将光标定位到字符的最后面。

修改的地方是TextView这个控件,因为EditText也是继承了TextView。在setText方法中有:

1  private void setText(CharSequence text, BufferType type, 2                          boolean notifyBefore, int oldlen) { 3 …… 4         if (text instanceof Spannable) { 5             Spannable sp = (Spannable) text; 6  7             …… 8             if (mMovement != null) { 9                 mMovement.initialize(this, (Spannable) text);10         //文本是不是Editable的。11         if(this instanceof Editable)12                      //设定光标位置13                      Selection.setSelection((Spannable)text, text.length());14 15                ……16     }

从红色代码中可以看出,google是要光标处在缺省文本的末端,但是,log发现 (this instanceof Editable)非真,也就是说Selection.setSelection((Spannable)text, text.length());并不会被执行。

1    Log.d("TextView", "(type == BufferType.EDITABLE)="+(type == BufferType.EDITABLE));2    if(type == BufferType.EDITABLE){3          Log.d("TextView","Format text.Set cursor to the end ");4          Selection.setSelection((Spannable)text, text.length());5    }

这个样修改后即可。

 

在编写应用的时候,如果我们要将光标定位到某个位置,可以采用下面的方法:

1 CharSequence text = editText.getText();2 //Debug.asserts(text instanceof Spannable);3 if (text instanceof Spannable) {4     Spannable spanText = (Spannable)text;5     Selection.setSelection(spanText, text.length());6 }

其中红色标记的代码为你想要设置的位置,此处是设置到文本末尾。

 

转载于:https://www.cnblogs.com/nanhuchongzi/archive/2012/04/17/2444451.html

你可能感兴趣的文章
查看Linux并发连接数
查看>>
你是谁不重要,关键是你跟谁!
查看>>
CSS中规则@media的用法
查看>>
pychecker:分析你的python代码
查看>>
css 默认不显示 之后显示
查看>>
我的友情链接
查看>>
DNS显性+隐性URL转发原理
查看>>
我的友情链接
查看>>
网易有道 IP地址、手机号码归属地和身份证 查询接口API
查看>>
鼠标停留在GridView某一行时行的颜色改变
查看>>
系列3:WAS Liberty Profile hello mysql jdbc
查看>>
基础知识:python模块的导入
查看>>
Android MVC之我的实现
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
关于批处理-1
查看>>
Tomcat部署Web应用方法总结
查看>>
Python3 django2.0 字段加密 解密 AES
查看>>
CCNA实验之:网络地址转换(NAT)实验
查看>>
计算机网络原理笔记-停止等待协议
查看>>