prowebview
prowebview copied to clipboard
links from google.com and other sites not working
Hello, after loading google url like this: proWebView.loadUrl("https://www.google.ru/search?q=wiki");
I can't follow links in search results, looks like the site has loaded but the view has not refreshed
i think you have to override shouldOverrideUrlLoading() method and return false, like this:
myWebView.setProClient(new ProWebView.ProClient() {
@Override
public boolean shouldOverrideUrlLoading(ProWebView webView, String url) {
return false;
}
});
thanks @korchix ! Can the repo owner please just show things working in the main app? This wasted a ton of my time