hch
2023-11-19 a458ea510569c1c8ef0ca67b8af21ccf9447c9a3
SdkProject/library/src/main/java/com/secondworld/sdk/utils/WebViewUtil.java
@@ -78,10 +78,15 @@
    public void open(String url, boolean delay) {
        if (!isValid())
            return;
        webView.loadUrl(url);
        isShow = true;
        if (!delay)
            show();
        webView.post(new Runnable() {
            @Override
            public void run() {
                webView.loadUrl(url);
                isShow = true;
                if (!delay)
                    show();
            }
        });
    }
    private void show() {