WebView is not loading page in Android 9.0?

后端 未结 7 1645
时光说笑
时光说笑 2020-12-03 05:24
 public abstract class MainActivity extends AppCompatActivity {

        private static WebView web;
        private WebView mWebView;
        private java.lang.Stri         


        
7条回答
  •  不知归路
    2020-12-03 05:59

    In android 10 finally, this is worked for me to load full content rather partial.

    webView.loadDataWithBaseURL(null, contentText, "text/html", "UTF-8", null);
    

提交回复
热议问题