I guess there are some answers on SOF for such a topic, but still something doesn't work with me. The thing that mattters is that I get a redirect within WebView from some site to a URL kind of "myapp://something". In before, this redirect is made by site's API where the app is already registered to get a URL callback with the scheme mentioned above. Redirect is logged, URL "myapp://something" is confirmed there, but, for example, redirect to http://some.host inside WebView can be led to external browser or (when WebViewClient.shouldOverrideUrlLoading is set to return false) to the same WebView, making it try to open the URL instead of making system send an intent. In both cases mentioned above, a redirect to myapp://something leads to nowhere, although my intent filter for the activity I created for handling it is set up like that:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="myapp" />
</intent-filter>
That's a kind of solution proposed in Android url override doesn't work on redirect and in http://developer.appcelerator.com/question/120393/custom-url-scheme---iphone--android Could someone tell me, is it a bug of WebView with no working redirects or my intent filter is not set up properly?