1

I want to select the full text when the AutoCompleteTextView is clicked,

I used android:selectAllOnFocus="true" but didnt work.

kaya3
  • 47,440
  • 4
  • 68
  • 97
Umesh Chakradhar
  • 151
  • 3
  • 13

1 Answers1

0

try this

    android:textIsSelectable="true"
    android:focusable="true"
    android:longClickable="true"

this is for TextView but might work for AutoCompletTextView

Kiran Patel
  • 98
  • 3
  • 12