我需要在我的应用程序中打开chrome或任何浏览器中的所有URL。我怎么能在android中做到这一点?
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:path="/.*"/>
<data android:pathPattern="/Android" />
</intent-filter>
目前我在我的项目中使用上面的代码。这会将其他应用的所有链接重定向到我的应用。但不是来自Chrome。
答案 0 :(得分:1)
你想要的是不可能的。浏览器无需关注可能对URL感兴趣的任何其他应用程序。特别是,Chrome似乎假设所有http
/ https
网址都只是作为网页从Internet加载。其他浏览器的行为可能相同。