Android 中ContentProvider和Uri详解(3)

五、使用ContentProvider共享数据
 
ContentProvider类主要方法的作用:
 public boolean onCreate():该方法在ContentProvider创建后就会被调用,Android开机后,ContentProvider在其它应用第一次访问它时才会被创建。
 public Uri insert(Uri uri, ContentValues values):该方法用于供外部应用往ContentProvider添加数据。
 public int delete(Uri uri, String selection, String[] selectionArgs):该方法用于供外部应用从ContentProvider删除数据。
 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs):该方法用于供外部应用更新ContentProvider中的数据。
 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder):该方法用于供外部应用从ContentProvider中获取数据。
 public String getType(Uri uri):该方法用于返回当前Url所代表数据的MIME类型。
 
如果操作的数据属于集合类型,那么MIME类型字符串应该以vnd.android.cursor.dir/开头,
 
例如:要得到所有person记录的Uri为content://com.ljq.provider.personprovider/person,那么返回的MIME类型字符串应该为:"vnd.android.cursor.dir/person"。
 
如果要操作的数据属于非集合类型数据,那么MIME类型字符串应该以vnd.android.cursor.item/开头,
 
例如:得到id为10的person记录,Uri为content://com.ljq.provider.personprovider/person/10,那么返回的MIME类型字符串为:"vnd.android.cursor.item/person"。
 
六、使用ContentResolver操作ContentProvider中的数据
 
当外部应用需要对ContentProvider中的数据进行添加、删除、修改和查询操作时,可以使用ContentResolver 类来完成,要获取ContentResolver 对象,可以使用Activity提供的getContentResolver()方法。 ContentResolver 类提供了与ContentProvider类相同签名的四个方法:
 public Uri insert(Uri uri, ContentValues values):该方法用于往ContentProvider添加数据。
 public int delete(Uri uri, String selection, String[] selectionArgs):该方法用于从ContentProvider删除数据。
 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs):该方法用于更新ContentProvider中的数据。
 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder):该方法用于从ContentProvider中获取数据。
 
这些方法的第一个参数为Uri,代表要操作的ContentProvider和对其中的什么数据进行操作,
 
假设给定的是:Uri.parse("content://com.ljq.providers.personprovider/person/10"),那么将会对主机名为com.ljq.providers.personprovider的ContentProvider进行操作,操作的数据为person表中id为10的记录。
 
使用ContentResolver对ContentProvider中的数据进行添加、删除、修改和查询操作:

ContentResolver resolver = getContentResolver();
Uri uri
= Uri.parse("content://com.ljq.provider.personprovider/person");
//添加一条记录
ContentValues values =new ContentValues();
values.put(
"name", "linjiqin");
values.put(
"age", 25);
resolver.insert(uri, values);
//获取person表中所有记录
Cursor cursor = resolver.query(uri, null, null, null, "personid desc");
while(cursor.moveToNext()){
Log.i(
"ContentTest", "personid="+ cursor.getInt(0)+",name="+ cursor.getString(1));
}
//把id为1的记录的name字段值更改新为zhangsan
ContentValues updateValues =new ContentValues();
updateValues.put(
"name", "zhangsan");
Uri updateIdUri
= ContentUris.withAppendedId(uri, 2);
resolver.update(updateIdUri, updateValues,
null, null);
//删除id为2的记录
Uri deleteIdUri = ContentUris.withAppendedId(uri, 2);
resolver.delete(deleteIdUri,
null, null);

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/c1e954bc70ec8c712b0c6f8c39352916.html