When user click on EditText the cursor comes up with the Text Select Handle. Text Select Handle can move around to a different position in the field. Text Select Handle is
Is there a way you can remove that so it does not show up?
When user click on EditText the cursor comes up with the Text Select Handle. Text Select Handle can move around to a different position in the field. Text Select Handle is
Is there a way you can remove that so it does not show up?
To resolve this issue i have created an empty image in shape.
and just use this image in edit text
A great solution was provided by @Deepak Goel, but this approach has one downside. The "Text Select Handle" is disabled permanently for the given EditText.
Another approach is to call clearFocus() and then requestFocus(). It does the work, but it does not seem optimal. If someone dives deeper in the Android sources, he may find a more optimized solution though.