My Android app has a WebView in its main layout.
This WebView is intended to open gdrive folders after letting the user login.
All this has to happen in the WebView, but I see that the system opens the urls I feed the WebView with in the Gdrive app or in the Chrome browser. The url has the form "https://drive.google.com/open?id=...". webView.loadUrl() method is used, no intent involved.
I need to avoid this behaviour. Changing the Drive app settings in Android was not useful.
I mean, is it the WebView in my app not enough independent so to decide what to do?