没有听说过用百度可以找到开发员需要的资料的。我们都使用火星上才有的搜索Google。
for current Cursor Line try this:
public int getCurrentCursorLine(EditText editText) { int selectionStart = Selection.getSelectionStart(editText.getText()); Layout layout = editText.getLayout(); if (!(selectionStart == -1)) { return layout.getLineForOffset(selectionStart); } return -1; }
and for Cursor position use getSelectionStart()
:
int cursorPosition = myEditText.getSelectionStart();
谢谢,问题已经解决。不过现在上Google有点难度,所以才习惯性的用百度