カスタムアダプタを使用して連絡先のリストを入力するマルチオートコンプリートテキストボックスがあります。それは機能しています。私が知りたいのは、これから選択したアイテム(つまり電子メール)のリストを取得するにはどうすればよいですか?私のオートコンプリートテキストボックスは次のようなものです
MultiAutoCompleteTextView act=(MultiAutoCompleteTextView)findViewById(R.id.attende_list);
ContentResolver content = getContentResolver();
Cursor cursor = content.query(ContactsContract.CommonDataKinds.Email.CONTENT_URI,PEOPLE_PROJECTION, null, null, null);
ContactListAdapter adapter = new ContactListAdapter(this, cursor, true);
act.setThreshold(2);
act.setAdapter(adapter);
act.setTokenizer(
new MultiAutoCompleteTextView.CommaTokenizer());
ContactListAdapter
連絡先メールIDを取得するためのカスタムアダプタはどこにありますか。