读书人

第三章:取得联系人文件

发布时间: 2012-09-21 15:47:26 作者: rapoo

第三章:取得联系人资料
效果:













main.xml



AndroidManifest.xml





使用Content Provider

查询所有通讯录数据:

content://contacts/people

查询通讯录的特定联系人ID:10

content://contacts/people/10

修改Content provider里的数据

ContentResolver.update();

添加一项数据进入 Content Provider

ContentResolvert.insert();

将数据存储至Content Provider:

ContentResolver().openOutputStream();

自Provider以删除一笔数据:

ContentResolver.delete();

读书人网 >移动开发

热点推荐