美文网首页
Kotlin在webview中遇到的问题

Kotlin在webview中遇到的问题

作者: 钦秋 | 来源:发表于2018-11-28 00:18 被阅读0次

在使用Kotlin时,重写WebView的WebViewClient
在运行时onPageStarted()会发生奔溃,在错误日志如下:

Parameter specified as non-null is null: method kotlin.jvm.internal.Intrinsics.checkParameterIsNotNull, parameter favicon

解决方案

override fun onPageStarted(view: WebView, url: String, favicon: Bitmap?) {
    super.onPageStarted(view, url, favicon)
    xxxx
}

在重写onPageStarted()方法时 注意把favicon这个参数置为可空的

相关文章

网友评论

      本文标题:Kotlin在webview中遇到的问题

      本文链接:https://www.haomeiwen.com/subject/xyeoqqtx.html