我正在开发网络应用程序,我正在使用网络视图直接从网站 url 加载它。在 android webview 中加载该 url 时,它的加载速度非常慢,加载时间接近 5 -7 秒,平均在显示白屏时。所以,我在想的是在加载 webview 的过程中,我想在屏幕上显示一个图像,5 秒后应用程序将加载。因此,通过在 webview 加载时平均显示 5 秒的任何图像,用户可以直接访问应用程序而不会面临任何时间延迟(例如出现白屏)。
我的代码是:
WebView webview = (WebView) findViewById(R.id.webView1);
websetting = webview.getSettings();
websetting.setJavaScriptEnabled(true);
webview.setVerticalScrollBarEnabled(false);
webview.loadUrl("/**here loading my url which is taking nearly 5-8 seconds to load**/");
我尝试使用启动画面,但是在启动画面超时后,webview 正在加载。
那么,任何人都可以帮助我解决这个问题。在加载 webview 时加载图像。