문제

I try to load a HTML page into an Android Webview using loadData function. The issue is that the first time I scroll down the view, it seems like is loading the HTML code. Is possible to load the HTML site completely before showing the webview? Otherwise, this first time the view goes slowly down and blink a lot. I'm getting this webview through a FragmentManager Thanks in advance.

도움이 되었습니까?

해결책

Try to disable the hardware accelerator on the activity:

android:hardwareAccelerated="false"

다른 팁

This may help :myWebView.setBackgroundColor(Color.TRANSPARENT);

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top