2011-01-05 48 views
0

我正在創建一個Android應用程序,需要從手機的聯繫人中查看聯繫人並添加聯繫人或將其同步到我的應用程序中。是否有可能做到這一點?怎麼樣?在創建的應用程序中查看並添加聯繫人

謝謝..

+0

請說明您是「將其添加到我的應用程序」的意思。 – CommonsWare 2011-01-05 14:50:29

回答

1

是的,絕對可以使用的內容解析器和光標

例如讀取聯繫人姓名以獲取更多信息

Cursor cursor = getContentResolver(). 
    query(Contacts.CONTENT_URI, 
     new String[]{Contacts.DISPLAY_NAME}, null, null,null); 

    if(cursor!=null){ 
     while(cursor.moveToNext()){ 

     String name = cursor.getString(cursor.getColumnIndex(Contacts.DISPLAY_NAME)) 
     } 

使用下面的鏈接

http://developer.android.com/guide/topics/providers/content-providers.html

相關問題