webview android不存储会话/ cookie

时间:2017-11-19 10:58:25

标签: javascript java android-studio webview

我遇到了一个问题。当我设置if (inputSTR.matches("\\d{2}-\\d{2}-\\d{2}")) { // input matches to required pattern } else { // Show error msg } 并尝试登录时,应用无法处理会话,并显示我尚未登录,但是当我设置view.loadUrl("http://mysite");并通过Google搜索加载我的网站时,会话正在建立正确的,其他站点登录view.loadUrl("http://google.com");也可以正常登录;

请帮忙,我尝试了什么,但没有任何帮助...谢谢。

P.S网站在其他浏览器中运行良好。 我的xml

view.loadUrl("http://othersite")

主要活动

<?xml version="1.0" encoding="utf-8"?>
<android.widget.FrameLayout xmlns:android="http://schemas.android.com    /apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.gtr.rox.MainActivity"
android:background="#333333"
android:id="@+id/webview_frame">
<WebView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/webView"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true" />
    </android.widget.FrameLayout>

}

1 个答案:

答案 0 :(得分:0)

通过删除此行解决

 view.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK); 

它有效!