hch
2024-05-22 1f9ca5966385f6b4932ac1d0c17b03c6c03b9afd
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() {