Android平台上构建URI的原则是什么?
有没有关于在 Android 平台上使用 URI 背后原理的文档?例如,我有一个允许用户阅读特定论坛的应用程序。它有几个活动 - 一个用于查看论坛列表,一个用于查看线程列表,一个用于查看帖子列表等。
我想在我的活动意图中使用分层 URI 来指示活动应该做什么展示。这是个好主意吗?如果是这样,制定这些 URI 的最佳方法是什么?
例如,我应该使用自己的方案,如 myforums:
或 content:
方案?
Is there any documentation on principles behind using URIs on Android platform? For example, I have an application that allows user to read particular forums. It has a couple of activities - one for viewing list of forums, one for viewing list of threads, one for viewing list of posts, etc.
I'd like to use a hierarchical URI in my activities' intents to indicate what an activity should display. Is it a good idea? If so, what is the best way to formulate those URIs?
For example, should I use my own scheme like myforums:
or content:
scheme?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用标准 http URI 查看公共 Web 内容并根据主机/路径设置意图过滤器。 Android Market 就是这方面的一些例子,它将打开 http://market.android.com 上的应用程序链接,同时该网站本身将在任何浏览器中打开。 YouTube 应用程序还将打开视频的直接链接。
使用 http URI 意味着,如果您的应用程序不存在,则可以从任何平台上的任何浏览器打开该内容的共享链接,但应用程序可以在它存在时接管,以提供更丰富或更优化的体验。
Use standard http URIs for viewing public web content and set up your intent filter based on the host/path. Some illustrations of this include Android Market, which will open links to apps on http://market.android.com while the site itself will open in any browser. The YouTube app will open direct links to videos as well.
Using http URIs means that shared links to that content may be opened from any browser on any platform if your app is not present, but the app can take over when it's there to provide a richer or more optimized experience.