ContentProvider内容提供者,自定义

先创建一个数据库吧

package com.example.sqlitedatabase_transaction;

import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteDatabase.CursorFactory;
import android.database.sqlite.SQLiteOpenHelper;

public class Mysq extends SQLiteOpenHelper{

    public Mysq(Context context) {
        super(context, "wode.db", null, 1);
        // TODO Auto-generated constructor stub
    }

    @Override
    public void onCreate(SQLiteDatabase db) {
        // TODO Auto-generated method stub
        db.execSQL("create table mlove(_id integer primary key autoincrement,name varchar(20),count float(11,3))");
        db.execSQL("insert into mlove values(null,'小明',1000)");
        db.execSQL("insert into mlove values(null,'小刚',0)");
    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        // TODO Auto-generated method stub
        
    }

}

然后我又创建了内容提供者他实现了数据库

package com.example.sqlitedatabase_transaction;

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

public class Mycontent extends ContentProvider{
    public final static int code=1;
    public final static int code2=2;
    private String sqlname="mlove";
    static UriMatcher uriMatcher;
    private SQLiteDatabase db;
static{
    uriMatcher = new UriMatcher(UriMatcher.NO_MATCH);//路径匹配
    uriMatcher.addURI("com.wode", "A", code);//匹配的规则 参数1是在清单中定义的auth...写上 2,判断3的int值
    uriMatcher.addURI("com.wode", "B", code2);//果2参都一如样下面会替代上面
}
    @Override
    public boolean onCreate() {//用于创建已有的数据库对象
        Mysq mysq = new Mysq(getContext());
        db = mysq.getReadableDatabase();
        return false;
    }

    @Override
    public Cursor query(Uri uri, String[] projection, String selection,
            String[] selectionArgs, String sortOrder) {
        // TODO Auto-generated method stub
        int match = uriMatcher.match(uri);//匹配路径返回code的int值//如果uri和addURI不匹配返回-1
        Cursor query=null;
        switch (match) {
        case code:
            Log.e("tag", match+"code");
            query = db.query(sqlname, projection, selection, selectionArgs, null, null, sortOrder);
            break;
        case code2:
            Log.e("tag", match+"code2");
            break;
        default:
            break;
        }
        return query;
    }

    @Override
    public String getType(Uri uri) {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public Uri insert(Uri uri, ContentValues values) {
        // TODO Auto-generated method stub
        long l = db.insert(sqlname, null, values);//如果2参数是3没有值自动填写null
        Uri uri2 =null;
        if(l!=-1){
         uri2 = Uri.parse(""+l);//我这里用uri2没有引用,new出来
         Log.e("tag", uri2+""); 
        }else{
            return null;    
        }
        return uri2;
    }

    @Override
    public int delete(Uri uri, String selection, String[] selectionArgs) {
int i = db.delete(sqlname, selection, selectionArgs);
        
        return i;
    }

    @Override
    public int update(Uri uri, ContentValues values, String selection,
            String[] selectionArgs) {
        int update = db.update(sqlname, values, selection, selectionArgs);
        return update;
    }

}

在代码中写了四个点击方法

package com.example.sqlitedatabase_transaction;

import android.app.Activity;
import android.content.ContentResolver;
import android.content.ContentValues;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.net.Uri;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;

public class MainActivity extends Activity {

    private ContentResolver resolver;
    private Uri uri;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Mysq mysq = new Mysq(this);
        SQLiteDatabase database = mysq.getReadableDatabase();
        uri = Uri.parse("content://com.wode/A");//引用类(如果为空的话select不会崩溃因为他没有传入值!..毫无反应)
    }
    public void select(View v){
resolver = getContentResolver();
        
//      通过uri走清单com.wode然后跳转Mycontent类掉方法       A就是判断int值
        Cursor query = resolver.query(uri, null, null, null, null, null);
        if(query!=null){
            query.moveToFirst();
            query.moveToPrevious();
            while(query.moveToNext()){
                int _id = query.getInt(0);
                String name = query.getString(1);
                float count = query.getInt(2);
                Log.e("tag", _id+name+count+"");
            }
        }
    }
    public void delete(View v){
        int i = resolver.delete(uri, "name=?", new String[]{"小木棍"});
        if(i>0){
            Log.e("tag", "删除成功");
        }else{
            Log.e("tag", "删除失败");
        }
    }
    public void update(View v){
        ContentValues contentValues = new ContentValues();
        contentValues.put("count", 11.55);
        int i = resolver.update(uri, contentValues, "name=?", new String[]{"小木棍"});
        if(i>0){
            Log.e("tag", "修改成功");
        }else{
            Log.e("tag", "修改失败");
        }
    }
    public void insert(View v){
        ContentValues contentValues = new ContentValues();
        contentValues.put("name", "小木棍");
        contentValues.put("count", "823.5");
        Uri insert = resolver.insert(uri, contentValues);
        if(insert==null){
            Log.e("tag", "添加失败");
        }else{
            String path = insert.getPath();
            Log.e("tag", "添第"+path+"个数据");  
        }
            
    }
}

主布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="${relativePackage}.${activityClass}" >

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="insert"
        android:text="增加" />

 <Button
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:onClick="delete"
     android:text="删除" />
    
  <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:onClick="update"
      android:text="更改" />
 
   <Button
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:onClick="select"
       android:text="查看" />
  
</LinearLayout>

清单中注册

<provider android:name="com.example.sqlitedatabase_transaction.Mycontent"
            android:authorities="com.wode">
            android:exported属性设置成true:可被其他应用使用;
android:exported属性设置成false:只能被自己所在的应用使用;
        </provider>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,928评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,192评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,468评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,186评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,295评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,374评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,403评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,186评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,610评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,906评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,075评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,755评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,393评论 3 320
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,079评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,313评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,934评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,963评论 2 351