gpt4 book ai didi

android - 如何从网站调用 Intent

转载 作者:行者123 更新时间:2023-11-30 04:46:51 25 4
gpt4 key购买 nike

我是 Android 开发的新手,所以请耐心等待。

我有一个 Android 手机可以访问的 ASP.NET 网站。在网站上,我希望用户能够通过单击按钮将联系人或事件添加到日历中。我认为我需要使用 Intent 。我在文档中看到我可以通过在 html 中使用“tel”来调用电话,但是我对日历事件和联系信息也可以这样做吗?

如果有人可以向我指出正确的文档,或者更好的是,为我提供一个简单的示例,我们将不胜感激。

谢谢,

卡罗。

最佳答案

这是可能的。

  • 在您的网站上设置一个包含适当信息的链接(也许在 URL 中包含信息,例如 http://mysite.com/telephone/67896988)

  • 在您的 Android 应用程序 list 中,添加 Intent 过滤器,以便您的应用程序打开该链接:

    <intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data android:scheme="http" android:host="mysite.com"
    android:pathPattern=".*/telephone/.*" />
    </intent-filter>
  • 当用户点击该链接时,除了浏览器之外,Android 还会建议您的应用打开该链接。然后,您的应用可以查看该 URL 并执行适当的操作。

关于android - 如何从网站调用 Intent ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4686218/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com