super.onCreate(icicle);
setContentView(R.layout.autocomplete_5);
ContentResolver content = getContentResolver();
Cursor cursor = content.query(Contacts.People.CONTENT_URI,
PEOPLE_PROJECTION, null, null, Contacts.People.DEFAULT_SORT_ORDER);
AutoComplete4.ContactListAdapter adapter =
new AutoComplete4.ContactListAdapter(cursor, this);
AutoCompleteTextView textView = (AutoCompleteTextView)
findViewById(R.id.edit);
textView.setAdapter(adapter);