启动与特定网址链接的Android应用

时间:2014-10-28 13:22:36

标签: android

任何人都可以告诉我如何从特定的URL启动Android应用程序。 如果我从邮件中获取此URL。

请建议我如何在特定网址上打开应用。

1 个答案:

答案 0 :(得分:0)

一种选择是建立一个网站,并为该网站上的特定URI设置一个intent-filter。例如,这就是Market在其网站上拦截URI的行为:

  <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="market.android.com"
            android:path="/search" />
    </intent-filter>