在 android 中,将自定义 URI 放入对应用程序的 EPUB 调用中

发布于 2024-12-26 12:20:33 字数 79 浏览 1 评论 0原文

我有一个 EPUB 文本,在该文本中有一个以“E2L://”开头的链接。当有人单击该链接时,我想打开一个显示链接文本的应用程序。有人可以帮我吗?

I have a text in EPUB, in this text there's a link that starts "E2L://".When somebody clicks in the link, I want to open an app that shows the link text. Can anybody help me please?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

源来凯始玺欢你 2025-01-02 12:20:33

是的,你可以做到:你应该在清单文件中注册,如下所示:

<intent-filter>
<data android:scheme="anton" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" /> <--Not positive if this one is needed
...
</intent-filter>

有关进一步参考,请检查此 监听自定义 URI

从链接启动应用

Yeah you can do it : You should register in your Manifest file like below :

<intent-filter>
<data android:scheme="anton" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" /> <--Not positive if this one is needed
...
</intent-filter>

For further reference check this Listen to Custom URI
and
Start app from link

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文