tags:

views:

49

answers:

1

I have implemented an activity that retrieves data from a web service and display it in the AutoCompleteTextView. This has been working quite well.

I'm interested in displaying a spinning animation while the data is being retrieved (The same effect like the Quick Search Box)

I try to figure out how the QSB is doing it (10x Open Source!) but couldn't find any place where the spinner image is being put/set/drawn onto the EditText control.

alt text

+1  A: 

There is no public interface to set the 'working spinner'.

If you implemented the suggestion provider, the spinner shows when the query starts.

ref: http://bit.ly/afEmoy

Kan-Ru Chen