android读取手机通讯录
2010-08-31 00:39:00 来源:WEB开发网核心提示:下面展示一段在Android1.5上读取手机通讯录的代码1 //链接通讯录数据库 2 ContentResolver content = getContentResolver(); 3 Cursor cursor = content.query(Contacts.People.CONTENT_URI, null, nu
下面展示一段在Android1.5上读取手机通讯录的代码
1 //链接通讯录数据库 2 ContentResolver content = getContentResolver(); 3 Cursor
cursor = content.query(Contacts.People.CONTENT_URI, null, null, null, null); 4
//保存用户名信息 5 String[] nameList = new String[cursor.getCount()]; 6 //遍历通讯录 7
for(int i=0; i
读取到的通讯录显示在一个ListView上边 如下图
[]
更多精彩
赞助商链接