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

转:http://blog.csdn.net/dajian790626/article/details/8464722

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

  1. EditText et = (EditText) findViewById(R.id.etTest);
  2. et.setSelection(2);

PS:当内容过多时,可通过设置光标位置来让该位置的内容显示在屏幕上。
2. 隐藏光标

  1. EditText et = (EditText) findViewById(R.id.etTest);
  2. //设置光标不显示,但不能设置光标颜色
  3. et.setCursorVisible(false);

3. 获得焦点时全选文本

  1. EditText et = (EditText) findViewById(R.id.etTest);
  2. et.setSelectAllOnFocus(true);


PS:此方法可用来在用户点击EditText时,选中默认内容。
4. 获取和失去焦点

  1. EditText et = (EditText) findViewById(R.id.etTest);
  2. et.requestFocus(); //请求获取焦点
  3. et.clearFocus(); //清除焦点

5. 综合运用代码

  1. EditText et = (EditText) findViewById(R.id.etTest);
  2. int index = et.getSelectionStart();//获取光标所在位置
  3. String text="#请在这里输入话题#";
  4. Editable edit = et.getEditableText();//获取EditText的文字
  5. if (index < 0 || index >= edit.length() ){
  6. edit.append(text);
  7. }else{
  8. edit.insert(index,text);//光标所在位置插入文字
  9. }
  10. et.setSelection(index + 1, index + text.length() - 1);

PS:在光标处插入文本,并选中##里面的文本

整理改编自: http://orgcent.com/android-edittext-cursor-position-focus/



2014年10月17日09:22:36

1.刚刚看到的获取和失去焦点的其他设置方式:

  焦点的获取

    titleInput.setFocusable(true);
    titleInput.requestFocus();

焦点的取消:

    titleInput.setFocusable(false);
时间: 2024-10-13 21:24:58

EditText设置/隐藏光标位置、选中文本和获取/清除焦点(转)的相关文章

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

有时候需要让光标显示在EditText的指定位置或者选中某些文本.同样,为了方便用户输入以提升用户体验,可能需要使EditText获得或失去焦点. 1. 设置光标到指定位置 EditText et = (EditText) findViewById(R.id.etTest); et.setSelection(2); PS:当内容过多时,可通过设置光标位置来让该位置的内容显示在屏幕上. 2. 隐藏光标 EditText et = (EditText) findViewById(R.id.etTes

jquery设置bootstrap-table的当前选中页码的获取与设置

一.获取当前table分页的页码 有两种方式可以获得当前选中的页码: 1.通过table的onPageChange方法 $('#agentTable').bootstrapTable({ data: {........}, onPageChange: function (pageNumber) { $.cookie("curAgentTablePageNumber", pageNumber); }, columns: [ {......} ]}); 2.通过table的getOptio

ANDROID中EDITTEXT如何定位光标位置

代码:edittext.setSelection(int); 范例: et.setText(content);//设置EditText控件的内容 et.setSelection(content.length());//将光标移至文字末尾 这样可以把光标移动到EditText的任何位置

C# 设置鼠标光标位置

using System.Drawing; using System.Runtime.InteropServices; namespace ZB.QueueSys.Common { public class MouseHelper { private static MouseHelper instance; public static MouseHelper Instance { get { if (instance == null) instance = new MouseHelper();

WPF设置控件获取键盘焦点时的样式FocusVisualStyle

控件获取焦点除了用鼠标外,可以通过键盘来获取,比如Tab键或者方向键等,需要设置控件获取键盘焦点时的样式,可以通过设置FrameworkElemnt.FocusVisualStyle属性, 因为几乎所有常用的控件都继承了FrameworkElement,所以绝大部分控件都拥有该属性 // Summary: // Gets or sets a property that enables customization of appearance, effects, // or other style

android listview 每一项都是edittext 导致的坑爹问题 内容的保存和焦点,光标位置的设置

activity布局:布局很简单,只有一个listview <RelativeLayout 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_

android 设置EditText光标位置

Android中有很多可编辑的弹出框,其中有些是让我们来修改其中的字符,这时光标位置定位在哪里呢? 刚刚解了一个bug是关于这个光标的位置的,似乎Android原生中这种情况是把光标定位到字符串的最前面.需求是将光标定位到字符的最后面. 修改的地方是TextView这个控件,因为EditText也是继承了TextView.在setText方法中有: 1  private void setText(CharSequence text, BufferType type,2             

获取textarea文本框所选字符光标位置索引,以及选中的文本值;textarea高度自适应,随着内容增加高度增加;获取输入框中的光标位置

获取textarea文本框所选字符光标位置索引,以及选中的文本值 $.fn.selection = function () { var s, e, range, stored_range; if (this[0].selectionStart == undefined) { var selection = document.selection; if (this[0].tagName.toLowerCase() != "textarea") { var val = this.val()

QTextEdit中选中文本修改字体与颜色,全部文本修改字体与颜色(设置调色板的前景色、背景色、文字颜色以及基色)

----我的生活,我的点点滴滴!! 当然以下内容都可以通过设置样式来达到目的,但是下面不使用这样的方法 先来看张图,理解此图基本就能实现上面所要达到的目的了 Widget::Widget(QWidget *parent) : QWidget(parent), ui(new Ui::Widget) { ui->setupUi(this); connect(ui->button, SIGNAL(clicked()), this, SLOT(setColor())); QPalette p = pa