0

I was just wondering if setFocusable works with AutoComplete text view.

I looked for examples and implemented it but setFocusable (in my observation) works only with EditText. Does setFocusable works with AutoComplete text view?

If not, are there any ways to implement such?

Charles
  • 50,943
  • 13
  • 104
  • 142
doylefelix
  • 117
  • 3
  • 12

1 Answers1

0

http://developer.android.com/reference/android/widget/AutoCompleteTextView.html

According to documentation, it does. I also can make it not focusable simply calling setFocusable( ).

Try to set also setFocusableInTouchMode( ), maybe you have default focus set on it;

ArturSkowronski
  • 1,722
  • 13
  • 17