AwoApp adlı üyeden alıntı: mesajı görüntüle
Uygulama kodlarından bu metodu bulun

public boolean shouldOverrideUrlLoading
Bu metodu tamamiyle silerseniz sorununuz çözülür.
Şöyle bir kod bulunuyor aşşağıdaki kodu komple sildim sonuç değişmedi

@Override public boolean shouldOverrideUrlLoading(WebView view, String url) {     if (url.startsWith("https://play.google.com/") || url.startsWith("http://play.google.com/")) {         try {             Intent intent = new Intent(Intent.ACTION_VIEW);             intent.setData(Uri.parse(url));             Activity host = (Activity) view.getContext();             host.startActivity(intent);             return true;         } catch (ActivityNotFoundException e) {             // Google Play app is not installed, you may want to open the app store link             Uri uri = Uri.parse(url);             view.loadUrl("https://play.google.com/store/apps/" + uri.getHost() + "?" + uri.getQuery());             return false;         }     }     return false; }  @Override public boolean shouldOverrideUrlLoading(WebView view, WebResourceRequest request) {     return super.shouldOverrideUrlLoading(view, request); }