自动完成的TextView与联系 [英] AutoComplete TextView with Contacts

查看:107
本文介绍了自动完成的TextView与联系的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要显示一个自动完成的文本框,将基本加载联系人的电子邮件标识。 我已经尝试过使用自定义适配器,但没有被填充在文本框中。不建议在所有。任何解决方案将是非常有用的。

i need to display an auto complete text box which will basically load the contacts e-mail ids. I have tried it using a custom adapter but nothing gets populated in the textbox. No suggestions at all. Any solutions will be very useful.

推荐答案

请尝试以下操作:

ArrayList<String> emailAddressCollection = new ArrayList<String>();

ContentResolver cr = getContentResolver();

Cursor emailCur = cr.query(ContactsContract.CommonDataKinds.Email.CONTENT_URI, null, null, null, null);

while (emailCur.moveToNext())
{
    String email = emailCur.getString(emailCur.getColumnIndex(ContactsContract.CommonDataKinds.Email.DATA));
            emailAddressCollection.add(email);
}
emailCur.close();

String[] emailAddresses = new String[emailAddressCollection.size()];
emailAddressCollection.toArray(emailAddresses);

ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
             android.R.layout.simple_dropdown_item_1line, emailAddresses);
AutoCompleteTextView textView = (AutoCompleteTextView)findViewById(R.id.YOUR_TEXT_VIEW);
     textView.setAdapter(adapter);
 }

注意:不要忘了在 READ_CONTACTS 的权限添加到您的Manifest.xml:

Note: Don't forget to add the READ_CONTACTS permission to your Manifest.xml:

<uses-permission android:name="android.permission.READ_CONTACTS" />

这篇关于自动完成的TextView与联系的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆