Kotlin在webview中遇到的问题
2018-11-28 本文已影响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这个参数置为可空的