minor fixes

This commit is contained in:
slymax 2019-01-22 12:43:24 +01:00
parent 5c8b5286ab
commit 37ec256891
2 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,7 @@ If you want to create an app that displays the content of a remote website
mWebView.setWebViewClient(new MyWebViewClient());
```
2. open the `MyWebViewClient.java` file and replace `example.com` on line **14** with your custom hostname
2. open the `MyWebViewClient.java` file and replace `example.com` on line **15** with your custom hostname
```java
if (Objects.requireNonNull(Uri.parse(url).getHost()).endsWith("example.com")) {

View File

@ -9,6 +9,7 @@ import java.util.Objects;
class MyWebViewClient extends WebViewClient {
@SuppressWarnings("deprecation")
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (Objects.requireNonNull(Uri.parse(url).getHost()).endsWith("example.com")) {