如题,在集成了x5webview之后,在华为5.0手机上报错,android.view.InflateException: Binary XML file line #10: Error inflating class com.tencent.smtt.sdk.WebView
但是在其他手机就是没有错。后来发现是因为我用了"androidx.appcompat:appcompat:1.1.0",在1.1.0 版本里面,是没有处理 android 5.0中 webview 的 bug.所以才会报错,无法使用。
解决方法:
把"androidx.appcompat:appcompat:1.1.0"换成"androidx.appcompat:appcompat:1.2.0-alpha02",或者最新版本,应该就可以了。对正常的webview也是适用的。
网友评论