用于捕获短信链接的意图过滤器不起作用

发布于 2024-10-13 05:05:24 字数 770 浏览 3 评论 0原文

我读过很多关于 stackoverflow 的文章和关于 Android API 的文档,以便能够捕获来自短信或邮件的链接。例如,如果我收到一条包含 myapp://hello 之类的链接的短信,我希望该链接可点击并在点击后打开我的应用程序。

我找到了如何在我想要激活的活动上使用意图过滤器来做到这一点。这是我的代码:

   <intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:scheme="myapp"></data>

我首先使用 android:scheme="http" 进行了尝试,效果很好(当我单击短信中的链接时,Android 会询问用户要使用哪个应用程序:浏览器或 myapp)。 但是,当我想使用 myapp 而不是 http 来执行此操作时,它不起作用...事实上,链接 myapp://hello 不可点击...因此不可能通过单击它来启动 myapp...

你有吗有什么想法吗?我是否必须在某个地方激活某些东西来告诉 Android 解析此类地址?

谢谢

I've read many posts on stackoverflow and doc on the Android API in order to be able to catch links from SMS or mail. For example, if I receive a SMS containing a link like myapp://hello, I want to to be clickable and to open my application once clicked.

I found how to do it using an intent filter on the activity I want to activate. Here is my code:

   <intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:scheme="myapp"></data>

I tried it first with android:scheme="http" and it worked well (when I clicked a link from a SMS, Android asked the user which app to use: browser or myapp).
However when I want to do so with myapp instead of http, it doesn't work...indeed the link myapp://hello is not clickable...so it's impossible to launch myapp clicking on it...

Do you have any idea ? Do I have to activate something, somewhere to tell Android to parse this kind of addresses ?

Thanks

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文