java.lang.IndexOutOfBoundsException: getChars (7 … 0) has end before start

后端 未结 5 2228
梦毁少年i
梦毁少年i 2020-12-19 20:36

My users are sending unhandled exceptions to me via http://code.google.com/p/android-remote-stacktrace/

I am getting the following but have no idea what it means.

5条回答
  •  渐次进展
    2020-12-19 20:56

    For anyone still struggling with this issue, placing the following code in your Activity's onResume will solve it:

    textEntry.setSelection(textEntry.getText().length(), textEntry.getText().length());
    

提交回复
热议问题