Sunday, June 12, 2016

EditText设置/隐藏光标位置、选中文本和获取/清除焦点

有时候需要让光标显示在EditText的指定位置或者选中某些文本。同样,为了方便用户输入以提升用户体验,可能需要使EditText获得或失去焦点
1. 设置光标到指定位置

EditText et  =  (EditText ) findViewById (R. idetTest ) ; 
et. setSelection ( 2 ) ;
Android中EditText设置光标到指定位置
PS:当内容过多时,可通过设置光标位置来让该位置的内容显示在屏幕上。
2. 隐藏光标


EditText et  =  (EditText ) findViewById (R. idetTest ) ; 
//设置光标不显示,但不能设置光标颜色 
et. setCursorVisible ( false ) ;
3. 获得焦点时全选文本

EditText et  =  (EditText ) findViewById (R. idetTest ) ; 
et. setSelectAllOnFocus ( true ) ;
Android中EditText获得焦点时全选文本
PS:此方法可用来在用户点击EditText时,选中默认内容。
4. 获取和失去焦点


EditText et  =  (EditText ) findViewById (R. idetTest ) ; 
et. requestFocus ( ) ;  //请求获取焦点 
et. clearFocus ( ) ;  //清除焦点

No comments:

Post a Comment