Android Studio 的教程文章鏈接
http://www.open-open.com/lib/view/open1468121363300.html
內容提供者可以把自己的數據庫暴露給別人的應用程序訪問。
*創建一個類 Provider extends 繼承 ContentProvider
*在清單文件.xml里面配置 內容提供者。配置完整的路徑和主機名。
android:name="cn.itcast.contentprovider.PersonDBProvider"
android:authorities="cn.itcast.contentprovider.personprovider"
*在Provider類中定義出來一些數據操作的uri
利用uriMarcher的方法添加一些指定的特殊路徑
matcher.addURI("cn.itcast.contentprovider.personprovider", "insert", 1);
matcher.addURI("cn.itcast.contentprovider.personprovider", "delete", 2);
matcher.addURI("cn.itcast.contentprovider.personprovider", "update", 3);
matcher.addURI("cn.itcast.contentprovider.personprovider", "query", 4);
*實現Provider增刪該查的方法。
***
使用內容提供者查詢數據
*獲取內容提供者的解析器
ContentResolver resolver=getContentResolver();
*使用resolver進行增刪該查的操作。
Cursor cursor = contentResolver.query(uri, null, null, null, null);
while(cursor.moveToNext()){
int id = cursor.getInt(cursor.getColumnIndex("id"));
String name = cursor.getString(cursor.getColumnIndex("name"));
String number = cursor.getString(cursor.getColumnIndex("number"));
Person p = new Person(id, name, number);
persons.add(p);
}
cursor.close();
