如何从网站调用意图

发布于 2024-10-11 14:55:07 字数 249 浏览 3 评论 0原文

我对 Android 开发非常陌生,所以请耐心等待。

我有一个可以通过 Android 手机访问的 ASP.NET 网站。在网站上,我希望用户能够通过单击按钮将联系人或事件添加到日历中。我认为我需要使用意图。我在文档中看到我可以使用 html 中的“tel”拨打电话,但是我是否可以对日历事件和联系信息执行相同的操作?

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

谢谢,

卡洛。

I'm extremely new at Android development so please be patient.

I have an ASP.NET web site that will be accessed by an Android phone. On the site I want the user to be able to add a contact or an event to the calendar by clicking on a button. I take it I need to use intents. I saw in the documentation that I can make a phone call by using "tel" in the html, but do I do the same thing for calendar events and contact information?

If someone could point me to the proper documentation, or better yet, provide me with a simple sample, it would be greatly appreciated.

Thanks,

Carlo.

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

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

发布评论

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

评论(1

我为君王 2024-10-18 14:55:07

这是可能的。

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

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

    <意图过滤器>
                   <动作 android:name="android.intent.action.VIEW" />
                    <类别 android:name="android.intent.category.DEFAULT" />
                    <类别 android:name="android.intent.category.BROWSABLE" />
                    <数据 android:scheme="http" android:host="mysite.com" 
                    android:pathPattern=".*/电话/.*" />
        
    
  • 当用户点击该链接时,Android 会建议您的应用程序打开该链接,除了浏览器。然后,您的应用程序可以查看该 URL 并执行适当的操作。

This is possible.

  • Set a link on your website with appropriate informations (perhaps include info in the URL e.g. http://mysite.com/telephone/67896988)

  • In your manifest of the Android app, add intent filter so that your app opens that link:

    <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>
    
  • When use clicks on that link, Android will suggest the link to be opened by your app, in addition to browser. Your app then can look into the URL and do appropriate action.

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