0
A
回答
2
多個選項
意圖過濾器:
<activity android:name=".ActivityTest">
<intent-filter><action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:host="www.mywebsite.com" android:scheme="http"></data>
</intent-filter>
</activity>
如下所述:https://groups.google.com/forum/#!topic/android-developers/C6qNOBULpCc 和官方文檔在這裏:http://developer.android.com/guide/topics/manifest/intent-filter-element.html
或者WebViewClient:
相關問題
- 1. 蟒蛇捕捉網頁重定向
- 2. 如何捕捉網址並重定向到靜態網頁?
- 3. 從網站重定向 - Android WebView
- 4. 如何捕捉網站地圖構造
- 5. 捕捉/重寫Javascript重定向
- 6. 如何捕捉與urllib2的重定向的URL在python
- 7. 捕捉變量stdout和stderr重定向
- 8. 的.htaccess - 重定向所有.HTML捕捉
- 9. 捕捉404並重定向到wwwroot
- 10. 捕捉Magento單頁結帳重定向
- 11. 網站重定向
- 12. 網站重定向
- 13. 如何在StarUML中捕捉網格?
- 14. 如何在網頁中捕捉到`System.Net.WebException`
- 15. 在WebView中捕捉mailto鏈接
- 16. 從android webview中的網頁重定向
- 17. 如何捕捉父網頁
- 18. 重定向網站如何工作?
- 19. 如何停止Joomla 2.5重定向插件捕捉404 URL
- 20. HttpClient的4 - 如何捕捉最後重定向URL
- 21. 在JavaScript中捕捉網格
- 22. 重定向在php中的網站
- 23. 網站重定向到移動網站
- 24. 如何在webview登錄後重定向?
- 25. 如何將我的網站重定向到移動網站
- 26. 如何將非www網站重定向到www網站?
- 27. 如何阻止我的網站重定向到其他網站
- 28. 外部網站複製(捲曲)網站,如何重定向
- 29. 如何將手機網站重定向到完整網站?
- 30. 如何將根網站重定向到網站集
使用與您的網址匹配的意圖過濾器 – njzk2
thnx,我認爲這將解決我的問題 – Luciano
你使用的是服裝的webview? – Arslan