我正在开发浏览器,最后我遇到了一个问题。
实际上,当我将“ Web视图浏览器”设置为默认浏览器时。然后,当我从WhatsApp和Facebook等其他来源打开链接时,它打开了我的浏览器,但没有重定向到我单击的链接。它只会打开我的浏览器,链接没有任何反应。
所以我实际上想要的是当我在Facebook或WhatsApp上单击某些链接时,然后我想在Webview中捕获该链接,因此我直接重定向到该链接。如何在浏览器中获取Clicked链接。
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="http"/>
<data android:scheme="https"/>
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.intent.action.VIEW" />
</intent-filter>
下面的上面的代码显示了我单击链接时的应用程序。当我单击浏览器时,它将正常运行,没有重定向到该链接...
请给我解决方案,如何在浏览器中获取该可点击链接...