登录后,Android WebView会显示空白页

时间:2016-05-13 04:09:37

标签: android webview

我正在尝试在WebView中加载网络应用程序,但我遇到了一些问题。

我尝试加载的Web应用程序是一个登录页面,我将登录它。

这是问题的开始,我没有问题加载第一页但是我登录后它应该在我登录后显示页面但我只能看到一个空白页面,我已经检查了登录日志我的帐户已登录,但WebView上没有任何内容。

这是我的代码:

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

    WebView webView = (WebView) findViewById(R.id.webView);
    WebSettings webSettings = webView.getSettings();
    webSettings.setJavaScriptEnabled(true);
    webSettings.setDomStorageEnabled(true);

    webView.setWebViewClient(new WebViewClient());
    {
        @Override
        public boolean shouldOverrideUrlLoading(WebView view, String url) {

            view.loadUrl(url);
            return false;
        }
    });

    webView.loadUrl(url);

}

我已经尝试使用WebChromeClient并且能够毫无问题地加载,但我希望它在WebView内加载而不是打开另一个浏览器。
任何人都知道为什么会发生这种情况?

3 个答案:

答案 0 :(得分:0)

使用此方法将您愿意打开的任何网址加载到网络视图xml

    String url = "URL";
    if (url != null){
        webView.loadUrl(url);
    }else{
        String content = getIntent().getStringExtra(CONTENT_EXTRA);
        webView.loadData(content, "text/html", null);
    }

答案 1 :(得分:0)

请检查您的代码是否包含不同的网址,因为在登录点击时无需重写shouldOverrideUrlLoading方法再次加载网址。

答案 2 :(得分:0)

试试这个样本,

  

MainActivity.java

import android.app.Activity;
import android.app.AlertDialog;
import android.app.ProgressDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.util.Log;
import android.view.Window;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.Toast;

public class MainActivity extends Activity {
private WebView webview;
private static final String TAG = "Main";
private ProgressDialog progressBar;  

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

     setContentView(R.layout.main);

    webview = (WebView)findViewById(R.id.webview);

    WebSettings settings = webview.getSettings();
    settings.setJavaScriptEnabled(true);
    webview.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_OVERLAY);

    final AlertDialog alertDialog = new AlertDialog.Builder(this).create();

    progressBar = ProgressDialog.show(Main.this, "WebView Example", "Loading...");

    webview.setWebViewClient(new WebViewClient() {
        public boolean shouldOverrideUrlLoading(WebView view, String url) {
            Log.i(TAG, "Processing webview url click...");
            view.loadUrl(url);
            return true;
        }

        public void onPageFinished(WebView view, String url) {
            Log.i(TAG, "Finished loading URL: " +url);
            if (progressBar.isShowing()) {
                progressBar.dismiss();
            }
        }

        public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
            Log.e(TAG, "Error: " + description);
            Toast.makeText(activity, "Oh no! " + description, Toast.LENGTH_SHORT).show();
            alertDialog.setTitle("Error");
            alertDialog.setMessage(description);
            alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int which) {
                    return;
                }
            });
            alertDialog.show();
        }
    });
    webview.loadUrl("http://www.google.com");
}
}
  

main.xml中

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<WebView android:id="+@id/webview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_weight="1" />
</LinearLayout>
  

的manifest.xml

<uses-permission android:name="android.permission.INTERNET" />

这可能对你有所帮助。