2

你好Stackoverflowers!

我编写了一个相对简单的应用程序,它由一个登录文本字段、一个密码文本字段和一个登录按钮组成。

我的目标是当用户输入登录信息并触摸登录按钮时,应用程序会将用户登录到我指定的网站并以不同的意图或 WebView 打开它。我当前的实现使用 WebView 打开一个新活动并传入登录信息。我的新活动代码如下:

setContentView(R.layout.web);


    try {
        //add the users login information(username/pw) to a List
        List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
        nameValuePairs.add(new BasicNameValuePair("email", "random@gmail.com"));
        nameValuePairs.add(new BasicNameValuePair("password", "password1"));

        //declare a new HttpClient
        HttpClient httpclient = new DefaultHttpClient();

        //set the HttpPost to the desire URL
        HttpPost httppost = new HttpPost(URL_STRING);

        //set the entity to a new UrlEncodedForm with the login info and type
        httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs, HTTP.UTF_8));

        //store the response
        HttpResponse response = httpclient.execute(httppost);

        //get the data from the response
        String data = new BasicResponseHandler().handleResponse(response);            

        //get the webview from the xml
        WebView webview = (WebView)findViewById(R.id.webView);

        webview.setWebViewClient(new WebViewClient() {  
            @Override  
            public boolean shouldOverrideUrlLoading(WebView view, String url)  
            {  
                view.loadUrl(url);  
                return true;  
            }  
        }); 

        //load the return website from the server
        webview.loadDataWithBaseURL(httppost.getURI().toString(), data, "text/html", HTTP.UTF_8, null);

这成功让我登录到 URL(一个 https 站点)并打开页面,但是如果您尝试单击网站上的任何按钮,它会将您带回 WebView 中的登录页面,并且它不会显示很多网站上的属性(图表/图形)。

这可能是饼干吗?

那么有没有办法通过新的意图发送登录信息?或者我的 WebView 实施有解决方案吗?

(这是一个相对相似(ish)的问题,从未得到明确的答案Android SSO (Single sign-on) for app

感谢您的时间!我真的很感谢你看看我的问题。

编辑:所以 giseks 的解决方案对我有用,让网页留在 WebView 中,但是页面上的图表/图形/等仍然没有显示,解决方案就像为 WebSettings 启用 javascript 一样简单

webview.getSettings().setJavaScriptEnabled(true);

这是 Google 的 WebSettings Android API 供参考:WebSettings

这对我有帮助,希望对你有帮助!

4

1 回答 1

3

我的猜测是您的应用程序没有正确处理 cookie。看看这个问题,它可能会有所帮助。

Android 上的 WebView 和 Cookie

编辑

在您的代码中,您似乎只将从请求中检索到的 html 传递给 WebView。饼干似乎在某个地方迷路了。我建议你另一种方法。

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    WebView webv = (WebView)findViewById(R.id.MainActivity_webview);         
    webv.setWebViewClient(new WebViewClient(){
            @Override
            public boolean shouldOverrideUrlLoading(WebView view, String url) {
                view.loadUrl(url);
                return true;
            }
    });

    String postData = FIELD_NAME_LOGIN + "=" + LOGIN +
            "&" + FIELD_NAME_PASSWD + "=" + PASSWD;

    // this line logs you in and you stay logged in
    // I suppose it works this way because in this case WebView handles cookies itself
    webv.postUrl(URL, EncodingUtils.getBytes(postData, "utf-8"));
}
于 2012-07-05T21:52:35.367 回答