You might find [this link of use](http://stackoverflow.com/questions/525063/android-respond-to-url-in-intent). The trick is to use an [intent filter](http://developer.android.com/guide/topics/manifest/intent-filter-element.html) to determine whether a URL matches one that your App will respond to.
– KnossosDec 09 '15 at 16:46
There are a lot of examples on [Google](https://www.google.com/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=intent%20filter%20example).
– KnossosDec 09 '15 at 16:54
In this case, the Fragment is completely irrelevant. The WebView is also irrelevant. You click on the URL, Android determines that your App handles it, the associated Activity is started.
– KnossosDec 09 '15 at 17:07