简体   繁体   中英

Blank page when try to login to facebook within webView

i use android studio to create webView. the code work OK, but the problem is when i try to do login with Facebook after i type the username and password i got a blank page. can someone help me and open my eyes what what I'm missing?

this is the code in the MainActivity.java

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    mWebView = (WebView) findViewById(R.id.activity_main_webview);
    // Enable Javascript
    WebSettings webSettings = mWebView.getSettings();
    webSettings.setJavaScriptEnabled(true);
    // Force links and redirects to open in the WebView instead of in a browser
    mWebView.setWebViewClient(new WebViewClient());
    mWebView.loadUrl("http://dosisearch.com/");

Nothing is wrong with your code. It is the website " http://dosisearch.com/ " which is having the problem :) When you click on login it displays a pop up window, maybe because of this you are not able to see it in a WebView. Try to use a different URL and check whether it is working fine.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM