链接后的WebView空白页

时间:2019-04-12 13:29:07

标签: android kotlin webview

该应用程序运行正常,但是在您单击登录链接后 登录页面没有出现,但是页面保持空白

activity_main

<WebView
        android:id="@+id/webframe"
        android:layout_width="match_parent"
        android:layout_height="match_parent"></WebView>

</RelativeLayout>

MainActivty

//webview
    webframe.loadUrl(getString(R.string.Site_Link))
    webframe.settings.javaScriptEnabled = true
    webframe.settings.allowFileAccess = true
    //Other WibView  Settings
    //End Other
    webframe.webViewClient = callurls()
    //Cach Settings
    webframe.settings.setAppCacheEnabled(true)
    webframe.settings.cacheMode = WebSettings.LOAD_DEFAULT
    webframe.settings.setAppCachePath("/data/data/$packageName/cache")

1 个答案:

答案 0 :(得分:0)

尝试添加此行

webframe.getSettings().setDomStorageEnabled(true);

默认情况下,dom存储设置为false,但是使用HTML5规范的网站需要使用该存储。

另一个问题可能是Site_Link的格式。

所以告诉我结果是什么。