android Contextprovider 对外共享数据


Contextprovider  跨app数据共享(以sqlite db为例)


sqlite db 所在app程序:


//在清单文件中配置好InfoProvider的唯一标识
//<application>
// <provider android:name=".InfoProvider" android:authorities="com.example.providers.infoprovider"/>
//</application>

import android.content.ContentProvider;
import android.content.ContentUris;
import android.content.ContentValues;
import android.content.UriMatcher;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.net.Uri;

public class InfoProvider extends ContentProvider {


private DBHelper dbOpenHelper;
private static final UriMatcher MATCHER = new UriMatcher(UriMatcher.NO_MATCH);
private static final int INFOS = 1;
private static final int INFO = 2;
static{
MATCHER.addURI("com.example.providers.infoprovider", "info", INFOS);
MATCHER.addURI("com.example.providers.infoprovider", "info/#", INFO);
}
@Override
public boolean onCreate() {
dbOpenHelper = new DBHelper(this.getContext());
return true;
}


@Override
public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) {
SQLiteDatabase db = dbOpenHelper.getReadableDatabase();
switch (MATCHER.match(uri)) {
case INFOS:
return db.query("info", projection, selection, selectionArgs, null, null, sortOrder);


case INFO:
long rowid = ContentUris.parseId(uri);
String where = "id="+ rowid;
if(selection!=null && !"".equals(selection.trim())){
where += " and "+ selection;
}
return db.query("info", projection, where, selectionArgs, null, null, sortOrder);
default:
throw new IllegalArgumentException("this is Unknown Uri:"+ uri);
}
}


@Override
public String getType(Uri uri) {
switch (MATCHER.match(uri)) {
case INFOS:
return "vnd.android.cursor.dir/person";
case INFO:
return "vnd.android.cursor.item/person";
default:
throw new IllegalArgumentException("this is Unknown Uri:"+ uri);
}
}


@Override
public Uri insert(Uri uri, ContentValues values) {
SQLiteDatabase db = dbOpenHelper.getWritableDatabase();
switch (MATCHER.match(uri)) {
case INFOS:
long rowid = db.insert("info", "name", values);//主键值
//  content://cn.itcast.provides.personprovider/person/10
Uri insertUri = ContentUris.withAppendedId(uri, rowid);
this.getContext().getContentResolver().notifyChange(uri, null);//发出数据变化通知
return insertUri;


default:
throw new IllegalArgumentException("this is Unknown Uri:"+ uri);
}
}


@Override
public int delete(Uri uri, String selection, String[] selectionArgs) {
SQLiteDatabase db = dbOpenHelper.getWritableDatabase();
int num = 0;
switch (MATCHER.match(uri)) {
case INFOS:
num = db.delete("info", selection, selectionArgs);
break;
case INFO:
long rowid = ContentUris.parseId(uri);
String where = "id="+ rowid;
if(selection!=null && !"".equals(selection.trim())){
where += " and "+ selection;
}
num = db.delete("info", where, selectionArgs);
break;
default:
throw new IllegalArgumentException("this is Unknown Uri:"+ uri);
}
return num;
}


@Override
public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
SQLiteDatabase db = dbOpenHelper.getWritableDatabase();
int num = 0;
switch (MATCHER.match(uri)) {
case INFOS:
num = db.update("info", values, selection, selectionArgs);
break;
case INFO:
long rowid = ContentUris.parseId(uri);
String where = "id="+ rowid;
if(selection!=null && !"".equals(selection.trim())){

where += " and "+ selection;
}
num = db.update("info", values, where, selectionArgs);
break;
default:
throw new IllegalArgumentException("this is Unknown Uri:"+ uri);
}
return num;
}


}


2.在另外一个 App中 调用 InfoProvider 操作数据



import android.content.ContentResolver;
import android.content.ContentValues;
import android.database.Cursor;
import android.net.Uri;
import android.test.AndroidTestCase;
import android.util.Log;


public class InfoProviderTest extends AndroidTestCase {

private static final String TAG = "InfoProviderTest";

public void testInsert() throws Exception{                               
Uri uri = Uri.parse("content://com.example.providers.infoprovider/info");
ContentResolver resolver = this.getContext().getContentResolver();
ContentValues values = new ContentValues();
values.put("name", "acct");
values.put("age", "10");
values.put("sex", "男");
resolver.insert(uri, values);
}

public void testDelete() throws Exception{
Uri uri = Uri.parse("content://com.example.providers.infoprovider/info/60");
ContentResolver resolver = this.getContext().getContentResolver();
resolver.delete(uri, null, null);
}

public void testUpdate() throws Exception{
Uri uri = Uri.parse("content://com.example.providers.infoprovider/info/62");
ContentResolver resolver = this.getContext().getContentResolver();
ContentValues values = new ContentValues();
values.put("name", "hehe");
resolver.update(uri, values, null, null);
}

public void testQuery() throws Exception{
Uri uri = Uri.parse("content://com.example.providers.infoprovider/info");
ContentResolver resolver = this.getContext().getContentResolver();
Cursor cursor = resolver.query(uri, null, null, null, "id asc");
while(cursor.moveToNext()){
String name = cursor.getString(cursor.getColumnIndex("name"));
Log.i(TAG, name);
}
cursor.close();
}
}




  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值