C++学习(二九五)Android的URI使用总结

Posted hankern

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++学习(二九五)Android的URI使用总结相关的知识,希望对你有一定的参考价值。

  通用资源标志符(Universal Resource Identifier, 简称"URI")。Uri代表要操作的数据,android上可用的每种资源 (图像、视频片段、网页等) 都可以用Uri来表示。从概念上来讲,URI包括URL。

1、访问本地文件

File file = new File("/data/data/cow.osg");
URI uri = file.toURI();
Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setType("*/*");
startActivityForResult(intent, 11);

2、访问网络文件

3、访问系统功能

比如打电话等

以上是关于C++学习(二九五)Android的URI使用总结的主要内容,如果未能解决你的问题,请参考以下文章

C++学习(二九三)Android的Intent

C++学习(二九六)Android的Bundle

C++学习(四二九)clang动态库

C++学习(二九一)Android的OBB路径

C++学习(二九九)undefined reference to `glActiveShaderProgramEXT‘

C++学习(二九零)数据和文件存储