6

I have placed an Android AutoCompleteTextView in Honeycomb action bar. The problem is even if the AutoCompleteTextView has focus, it does not show the cursor, so end-user thinks that the box does not have focus.

Programmer Bruce
  • 64,977
  • 7
  • 99
  • 97
prashant
  • 3,570
  • 7
  • 40
  • 50

1 Answers1

4

Add these attributes to your AutoCompleteTextView, to make the cursor black:

android:textColor="#000000"
android:textCursorDrawable="@null"

From: https://stackoverflow.com/a/9165217/1267112

Community
  • 1
  • 1
Jimmy
  • 221
  • 3
  • 6