应用程序没有拦截网址(application is not intercepting url)

2019-10-20 02:01发布

我试图拦截在Android上我自己的应用程序的URL,这样用户可以在应用程序而不是在浏览器中打开URL。 (我没有浏览器的支持还)。

这是我在做什么

<activity android:name=".ui.activity.MainActivity" android:label="@string/app_name">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
    <intent-filter>
        <action android:name="android.intent.action.PICK_ACTIVITY" />
        <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" />
        <data android:host="myapp.com" />
        <data android:pathPattern=".*"/>
    </intent-filter>
</activity>

出于某种原因,只要我打开myapp.com它仍保持打开浏览器,不给我在我的应用程序打开URL的选项。 我与API 16上运行它在我的模拟器尝试这个。 我已经关闭了仿真几次,但再次启动仍是其相同的行为。

为了避免在我个人的应用程序的URL的任何错误。 我甚至尝试了:

         <data android:host="goo.gl" android:scheme="http" />
         <data android:host="goo.gl" android:scheme="https" />

该应用程序做拦截上面的网址,但仅在第一次。 如果我提出的选项,请单击“只有一次”,我不要再不断,直到我重新启动仿真得到的选项。

有没有人通过这个去了? 什么可能我是做错了什么?

Answer 1:

这个答案让我: 链接质疑

如果添加的包名的意图,它会打开默认情况下,您的应用程序



文章来源: application is not intercepting url