Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的编辑文本中,我将键盘设置为具有“下一步”按钮。问题是,当在 Android 4.0 上按下 Next 按钮时(我在模拟器和 Android 4.0 设备上进行了测试),光标位于单词的开头而不是单词的末尾。我该怎么办?
谢谢
注意:在我的摩托罗拉 Defy (Android 2.2) 上运行良好。
您可以覆盖editText的onFocusChangeListener,并且当焦点更改时执行类似的操作以将光标设置到文本的末尾
editText.setSelection(editText.length - 1);