WEB开发网
开发学院手机开发Android 开发 Android 四种保存数据的方法 阅读

Android 四种保存数据的方法

 2010-03-24 15:36:00 来源:WEB开发网   
核心提示:Contacts : Contact detailsMediaStore : Media files such as audio, Video and ImagesSettings : Device Settings and Preferences调用Content Provider资源的标准URI结构:<sta

Contacts : Contact details

MediaStore : Media files such as audio, Video and Images

Settings : Device Settings and Preferences

调用Content Provider资源的标准URI结构:<standard_prefix>://<authority>/<data_path>/<id>

例如:

1) 取得浏览器所有“书签”信息: content://browser/bookmarks

2) 取得系统通讯录中的信息: content://contacts/people (如果取得某一个特定通讯记录,在路径URI的末端指定一个ID号:content://contacts/people/5

简单的实例片段

Uri allCalls = Uri.parse("content://call_log/calls");

Cursor c = managedQuery(allCalls, null, null, null, null);

上一页  1 2 

Tags:Android 保存 数据

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