阅读更多

先看效果图:


 

 

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加上IDUri 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,源码例子文档一网打尽。

  • android Uri详解_第1张图片
  • 大小: 3.9 MB
  • 查看图片附件

更多相关文章

  1. Android——文件路径(/mnt/sdcard/...)、Uri(content://media/ex
  2. Android获取外置SD卡读写路径
  3. 《Qt on Android核心编程》相关资源
  4. Android 中,应用程序需要的图片资源如何针对不同屏幕大小手机设计
  5. Qt on Android:资源文件系统qrc与assets
  6. Android studio 修改SDK路径

随机推荐

  1. 一个支持上下滚动动画的Android TextView
  2. Android应用程序打包签名、加固、二次打
  3. Android 复盘——帮你彻底了解消息机制
  4. Android UI基础——ViewPager+Fragment
  5. Android(安卓)异常 android.os.NetworkOn
  6. [置顶] 进击的Android注入术《五》
  7. Android中Activity之间的数据传递和Inten
  8. ubuntu 9.04下ndk安装问题
  9. [Android(安卓)Pro] 利用tcpdump和wiresh
  10. Android(安卓)动态设置控件的布局