android之ContentResolver与ContentProvider介绍
2017-02-06
20
android中对数据操作包含有: file, sqlite3, Preferences, ContectResolver与ContentProvider前三种数据操作方式都只是针对本应用内数据,程序不能通过这三种方法去操作别的应用内的数据。 android中提供ContectResolver与ContentProvider来操作别的应用程序的数据。一、 使用方式 一个应用实现ContentProvider来提供内容给别的应用来操作, 一个应用通过Cont...