任何人都可以了解如何从Android获取联系人列表?
我只想获得与拨号器应用相同的列表。但我得到了许多不在拨号列表上的联系人,代码如下。
ContentResolver cr = getContentResolver();
Cursor cursor = cr.query(Contacts.People.CONTENT_URI, null, null, null, Contacts.ContactMethods.DEFAULT_SORT_ORDER);
startManagingCursor(cursor);
提前致谢。
答案 0 :(得分:6)
试试这个代码段:
import android.app.ListActivity;
import android.database.Cursor;
import android.os.Bundle;
import android.provider.ContactsContract;
import android.provider.ContactsContract.CommonDataKinds.Phone;
import android.widget.SimpleCursorAdapter;
public class ContactList extends ListActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Cursor cursor = getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, new String[] {Phone._ID, Phone.DISPLAY_NAME, Phone.NUMBER}, null, null, null);
startManagingCursor(cursor);
String[] from = new String[] { Phone.DISPLAY_NAME, Phone.NUMBER};
int[] to = new int[] { R.id.name_entry, R.id.number_entry};
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, R.layout.list_entry, cursor, from, to);
this.setListAdapter(adapter);
}
}
XML文件是:
list_entry.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="6dip">
<TextView
android:id="@+id/name_entry"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:gravity="center_vertical"
android:textSize="18dip"/>
<TextView
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:id="@+id/number_entry"
android:singleLine="true"
android:ellipsize="marquee"
android:textSize="18dip"/>
</LinearLayout>
答案 1 :(得分:2)
你所拥有的似乎很好。你能详细说明“获取很多不在拨号列表上的联系人”吗?是Android正在组成人吗?或者您是否看到有电子邮件地址但没有电话号码的人(因此可能不会出现在拨号器中)?
请注意,Contacts.People
适用于Android 1.6及更低版本。从Android 2.0开始,该提供商已被弃用,取而代之的是ContactsContract
个提供商。
答案 2 :(得分:1)
This是android联系人列表Activity的基本实现。
答案 3 :(得分:0)
好的,先谢谢你的回答。只是为了阐明这一点。
我只想收到手机上的联系人的电子邮件。 “MyContacts”组。我看到这是ContactList Activity使用的组。
我完成了这样的事情:
c = cr.query(myGroupUri, mEmailsProjection, null, null, null);
....
c.close();
c = cr.query(
Contacts.ContactMethods.CONTENT_URI,
mContactsProjection, contactIds, null, null
);
....
c.close();
首先查询该组,然后查询电子邮件表。
答案 4 :(得分:0)
尝试使用意图转到联系人列表
startActivityForResult( new Intent(Intent.ACTION_PICK,ContactsContract.Contacts.CONTENT_URI),1);}