Update CustomWebView.java

pull/137/head
FongMi 4 years ago
parent 064813d5c8
commit 1497e41788
  1. 5
      app/src/main/java/com/fongmi/android/tv/ui/custom/CustomWebView.java

@ -90,6 +90,11 @@ public class CustomWebView extends WebView {
public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
handler.proceed();
}
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
return false;
}
};
}

Loading…
Cancel
Save