时光

Strive to be an excellent developer

  :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

EditText有这么个便利方法

/**
 * Convenience for {@link Selection#setSelection(Spannable, int)}.
 */
public void setSelection(int index) {
    Selection.setSelection(getText(), index);
}

实际上调用的是这个 ```java /** * Move the cursor to offset index. */ public static final void setSelection(Spannable text, int index) { setSelection(text, index, index); } ```
posted on 2015-03-11 12:08  朱东方  阅读(128)  评论(0编辑  收藏  举报