gpt4 book ai didi

android - Android KitKat 中的新 WebView 问题

转载 作者:太空宇宙 更新时间:2023-11-03 12:53:17 25 4
gpt4 key购买 nike

我的应用使用 WebView 来显示长文本

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

WebView mWebView = new WebView(getApplicationContext());

setContentView(mWebView);

String s = getHtml(); //get a long html from a file

webView.loadDataWithBaseURL("file:///android_asset/", s, "text/html", "UTF-8", null);
}

该应用在旧版 Android 上运行良好,
但是在 KitKat 上运行时,在创建或销毁 WebView 时,logcat 中会出现此错误:

libGLESv2(21582): HWUI Protection: wrong calling from app context F:ES3-glDeleteShader

我已阅读“Migrating to WebView in Android 4.4”,但我无法解决问题。

我该如何解决这个问题?

最佳答案

改变

WebView mWebView = new WebView(getApplicationContext());

WebView mWebView = new WebView(this);

关于android - Android KitKat 中的新 WebView 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26200329/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com