android-kotlin-webview icon indicating copy to clipboard operation
android-kotlin-webview copied to clipboard

An Android WebView simply converted from Java to Kotlin using the basic Android Studio tool.

Results 2 android-kotlin-webview issues
Sort by recently updated
recently updated
newest added

> This inspection reports redundant 'override' function which can be omitted. ``` override fun onPageFinished(view: WebView, url: String) { // TODO Auto-generated method stub super.onPageFinished(view, url) } ``` Kotlin community...

bug

> This inspection reports deprecated members being overridden. ``` override fun shouldOverrideUrlLoading(view: WebView, url: String): Boolean { if (Uri.parse(url).host == getString(R.string.website_domain)) { return false } val intent = Intent(Intent.ACTION_VIEW, Uri.parse(url))...

help wanted