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下载
最后,以上例子都来源与  android学习手册,源码例子文档一网打尽。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值