WEB开发网
开发学院手机开发Android 开发 android读取手机通讯录 阅读

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< cursor.getString(cursor.getColumnIndexOrThrow(Contacts.People.NUMBER));14 +=":" nameList[i]="cursor.getString(cursor.getColumnIndexOrThrow(Contacts.People.NAME));12" 获取电话13 获取人名11 cursor.moveToPosition(i);10 9 { 8 ;i++)>

读取到的通讯录显示在一个ListView上边 如下图

Tags:android 读取 手机

编辑录入:coldstar [复制链接] [打 印]
赞助商链接