你好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
这对我有帮助,希望对你有帮助!