android Uri详解

先看效果图:


1.Uri

通用资源标志符(Universal Resource Identifier, 简称"URI")。

Uri代表要操作的数据,Android上可用的每种资源 - 图像、视频片段等都可以用Uri来表示。

URI一般由三部分组成:

访问资源的命名机制。 

存放资源的主机名。 

资源自身的名称,由路径表示。 

AndroidUri由以下三部分组成: "content://"、数据的路径、标示ID(可选)

举些例子,如: 

所有联系人的Uri content://contacts/people

某个联系人的Uri: content://contacts/people/5

所有图片Uri: content://media/external

某个图片的Uricontent://media/external/images/media/4

我们很经常需要解析Uri,并从Uri中获取数据。

Android系统提供了两个用于操作Uri的工具类,分别为UriMatcher ContentUris 

虽然这两类不是非常重要,但是掌握它们的使用,会便于我们的开发工作。

2.UriMatcher

UriMatcher 类主要用于匹配Uri.

使用方法如下。

//首先第一步,初始化:

UriMatcher matcher = new UriMatcher(UriMatcher.NO_MATCH);  

UriMatcher matcher = new UriMatcher(UriMatcher.NO_MATCH);  

//第二步注册需要的Uri:

matcher.addURI("com.yfz.Lesson", "people", PEOPLE);  

matcher.addURI("com.yfz.Lesson", "person/#", PEOPLE_ID);  

matcher.addURI("com.yfz.Lesson", "people", PEOPLE);  

matcher.addURI("com.yfz.Lesson", "person/#", PEOPLE_ID);  

//第三步,与已经注册的Uri进行匹配:

Uri uri = Uri.parse("content://" + "com.yfz.Lesson" + "/people");  

int match = matcher.match(uri);  

       switch (match)  

       {  

           case PEOPLE:  

               return "vnd.Android.cursor.dir/people";  

           case PEOPLE_ID:  

               return "vnd.android.cursor.item/people";  

           default:  

               return null;  

       }  

Uri uri = Uri.parse("content://" + "com.yfz.Lesson" + "/people");  

int match = matcher.match(uri);  

       switch (match)  

       {  

           case PEOPLE:  

               return "vnd.Android.cursor.dir/people";  

           case PEOPLE_ID:  

               return "vnd.Android.cursor.item/people";  

           default:  

               return null;  

       }  

 

 

 

match方法匹配后会返回一个匹配码Code,即在使用注册方法addURI时传入的第三个参数。 

上述方法会返回"vnd.Android.cursor.dir/person". 

3.ContentUris

ContentUris 类用于获取Uri路径后面的ID部分

3.1为路径加上ID

比如有这样一个Uri

Uri uri = Uri.parse("content://com.yfz.Lesson/people")  

Uri uri = Uri.parse("content://com.yfz.Lesson/people")  

通过withAppendedId方法,为该Uri加上ID

Uri resultUri = ContentUris.withAppendedId(uri, 10);  

Uri resultUri = ContentUris.withAppendedId(uri, 10);  

最后resultUri为: content://com.yfz.Lesson/people/10

 

3.2从路径中获取ID

Uri uri = Uri.parse("content://com.yfz.Lesson/people/10")  

long personid = ContentUris.parseId(uri);  

Uri uri = Uri.parse("content://com.yfz.Lesson/people/10")  

long personid = ContentUris.parseId(uri);  

 最后personid :10 


 Demo下载
最后,以上例子都来源与安卓无忧,请去应用宝或者豌豆荚下载:http://android.myapp.com/myapp/detail.htm?apkName=com.shandong.mm.androidstudy,源码例子文档一网打尽。

猜你喜欢

转载自bububu201609134912.iteye.com/blog/2325035
今日推荐