第七章 跨内容共享数据,探究内容提供器

2016-02-03  本文已影响0人  wyxjoker

7.1内容提供器简介

内容提供器(Content Provider)主要用于在不同的应用程序之间实现数据共享的功能.内容提供器可以选择指定数据进行共享.使用方式包括使用现有的内容提供器读取和操作数据,或者创建自己的内容提供器给数据提供外部访问的接口.

7.2访问其他程序的接口

当应用程序通过内容提供器对其数据提供了外部访问的接口,任何其他的应用程序就可以对这部分数据进行访问.

7.2.1ContentResolver的基本用法

要借助ContentResolve类,通过Context中的getContentResolver()方法获取该类的实例.ContentResolver中提供了方法进行增删改查操作.

步骤:
1.ContentResolver中的增删改查方法都不接收表名参数,而使用一个Uri参数代替,这个参数称为内容URI.内容URI为内容提供器的数据建立了唯一的标识符.内容URI由权限(authority)和路径(path)组成.权限用于对不同的应用程序做区分,通常用程序包名命名(避免冲突).路径是用于对同一应用程序中不同的表做区分,通常添加到取新鲜后面.内容URI的标准写法是:

content://com.example.app.provider/table1

2.获取到的字符串需要解析为URI对象:

Uri uri = Uri.parse("content://com.example.app.provider/table1");

3.利用Uri对象查询数据.

Cursor cursor = getContentResolver().
query(uri,projection,selection,selectionArgs,sortOrder);

query()方法参数 对应 SQL 部分 描述
uri from table_name 指定查询某个应用程序下的某一张表
projection select column1, column2 指定查询的列名
selection where column = value 指定 where 的约束条件
selectionArgs 为 where 中的占位符提供具体的值
orderBy order by column1, column2 指定查询结果的排序方式

示例:
查找:

if (cursor != null) {
  while (cursor.moveToNext()) {
    String column1 =     cursor.getString(cursor.getColumnIndex("column1"));
    int column2 = cursor.getInt(cursor.getColumnIndex("column2"));
  } 
  cursor.close();
}

增加:

ContentValues values = new ContentValues();
values.put("column1", "text");
values.put("column2", 1);
getContentResolver().insert(uri, values);

修改:

ContentValues values = new ContentValues();
values.put("column1", "");
getContentResolver().update(uri, values, "column1 = ? and column2 = ?", newString[] {"text", "1"});

删除:

getContentResolver().delete(uri, "column2 = ?", new String[] { "1" });

7.2.2读取系统联系人

发生了点意外(悲伤脸

7.3创建自己的内容提供器

7.3.1创建内容提供器的步骤

创建一个类继承ContentProvider并重写

在内容URI后可以加ID号,返回的则是相应ID的数据.
可以使用通配符来匹配URI:

借助URIMatcher可以实现内容URI的匹配.URIMatcher提供了addURI(),接受三个参数(权限.路径,自定义代码).返回一个匹配这个人Uri对象所对应的自定义代码.根据代码可知调用方访问的是那张表的数据.

public class MyProvider extends ContentProvider {
  public static final int TABLE1_DIR = 0;
  public static final int TABLE1_ITEM = 1;
  public static final int TABLE2_DIR = 2;
  public static final int TABLE2_ITEM = 3;
  private static UriMatcher uriMatcher;
  static {
    uriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
    uriMatcher.addURI("com.example.app.provider", "table1",   TABLE1_DIR);
    uriMatcher.addURI("com.example.app.provider ", "table1/#", TABLE1_ITEM);
    uriMatcher.addURI("com.example.app.provider ", "table2", TABLE2_ITEM);
    uriMatcher.addURI("com.example.app.provider ", "table2/#", TABLE2_ITEM);
  }
  ……
  @Overridepublic
   Cursor query(Uri uri, String[] projection, String selection,String[] selectionArgs, String sortOrder) {
    switch (uriMatcher.match(uri)) {
      case TABLE1_DIR:
        // 查询table1表中的所有数据
        break;
      case TABLE1_ITEM:
        // 查询table1表中的单条数据
       break;
      case TABLE2_DIR:
        // 查询table2表中的所有数据
        break;
      case TABLE2_ITEM:
        // 查询table2表中的单条数据
        break;
      default:
        break;
      }
      ……
    }
  ……
}

getType()是所有内容提供器都必须提供的方法.用于获取Uri对象对应的MIME类型.MINE由三部分组成:

  1. 必须以 vnd 开头。
  1. 如果内容 URI 以路径结尾,则后接 android.cursor.dir/,如果内容 URI 以 id 结尾,则后接 android.cursor.item/。
  2. 最后接上 vnd.<authority>.<path>。

7.3.2 实现跨程序数据共享

略略略
上一篇下一篇

猜你喜欢

热点阅读