在web浏览器应用程序中打开android中的url

时间:2016-03-18 15:12:31

标签: android android-webview intentfilter

我正在使用Web浏览器。网络浏览器正在运行,但我需要帮助的部分,我的应用程序在点击(http,https等)时捕获Android系统的URL并打开我的Web浏览器应用程序

像任何其他浏览器chrome,firefox等一样,这些应用程序如何打开默认应用程序选择菜单?

阅读这些我了解<intent-filter>的用法

有人可以帮我解决添加到清单文件和活动的内容,以便我的应用程序捕获网址吗?

1 个答案:

答案 0 :(得分:0)

尝试将CATEGORY_BROWSABLE添加到可以处理网址的活动中。

像这样:

<intent-filter>
        <action android:name="android.intent.action.VIEW" />

<!--This makes activity an option for the default action (center press) to perform 
on a piece of data. -->
        <category android:name="android.intent.category.DEFAULT" />

<!-- Activities that can be safely invoked from a browser must support this category. -->
        <category android:name="android.intent.category.BROWSABLE" />
        <data
            android:scheme="http" />
        <data
            android:scheme="https" />
    </intent-filter>