Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

E/SpannableStringBuilder(18909): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length [closed]

Tags:

android

Getting the above error in log cat, I found quite some hits on this in google but they don't seem to apply to my case.

Currently I have no idea where to start looking or what code/layout to post to get help from you guys.

So where in my code shall I start looking to get rid of this error? The app seems to work as it should, but still I would like to get rid of the error - you never know...

like image 684
AndyAndroid Avatar asked Mar 22 '13 16:03

AndyAndroid


1 Answers

Just add this property to your edittext and your problem will definitely be resolved

    android:inputType="textNoSuggestions"

Add the above property to each of your edit text used in the application, or simply where you get the error in that edit text only.

Let me know when you are done with it or have some more queries ? Thanks

like image 129
Gaurav Arora Avatar answered Oct 04 '22 08:10

Gaurav Arora