[android-developers] Re: Android, auto complete with email contacts.

2012-01-15 Thread sblantipodi
I finded this examples: http://www.betaful.com/2011/02/multiple-e-mail-autocomplete-in-android/ but I don't find the way to use it. On 15 Gen, 23:37, Kostya Vasilyev wrote: > The auto-complete list is provided by an adapter, which is responsible for: > > 1) Filtering > 2) The drop-down list item

Re: [android-developers] Re: Android, auto complete with email contacts.

2012-01-15 Thread Kostya Vasilyev
The auto-complete list is provided by an adapter, which is responsible for: 1) Filtering 2) The drop-down list item views (sort of like with spinner and list view). Here is the adapter from the built-in Email app: http://www.grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/a

[android-developers] Re: Android, auto complete with email contacts.

2012-01-15 Thread sblantipodi
I don't understood how to pass contacts from phonebook to AutoCompleteTextView or MultiAutoCompleteTextView On 15 Gen, 22:52, Kostya Vasilyev wrote: > What it takes is: > > - Extending AutoCompleteTextView or MultiAutoCompleteTextView > - Providing a suitable adapter > > Take a look at the buil