使用webview的白色黑屏

时间:2017-09-09 14:39:53

标签: android webview

我正在尝试使用webview布局开始一项活动,而无需打开新的webbrowser。所以它将被嵌入到应用程序中。

似乎它已经工作了几天而现在......我只是得到一个白色的空白屏幕。你能帮我一把吗?

这是我的xml布局:

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true">
<WebView  xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>


<Button
    android:id="@+id/backBtn"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:height="50dip"
    android:background="#4d867f"
    android:text="Back"
    android:textColor="#f9f9f9"
    android:textSize="20dip" />

</LinearLayout>
</RelativeLayout>

以下是我如何调用此活动:

promotionBtn.setOnClickListener(new View.OnClickListener(){
        @Override
        public void onClick(View v) {

            Intent intent = new Intent(MainActivity.this, PromotionActivity.class);
            intent.putExtra("url", "https://www.test.com/apppromotion.html");
            startActivity(intent);
        }
    });

最后活动:

package br.com.test.androidtools;

import android.content.Intent;
import android.net.Uri;
import android.app.Activity;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.RecyclerView;
import android.support.v7.widget.Toolbar;
import android.view.KeyEvent;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.webkit.WebView;
import android.widget.Button;
import android.widget.Toast;
import android.webkit.WebViewClient;




public class PromotionActivity extends Activity {

private WebView webView;
private Button backBtn;

@Override
public boolean onKeyDown(int keyCode, KeyEvent event)
{
    if ((keyCode == KeyEvent.KEYCODE_BACK))
    {
        Intent it = new Intent(PromotionActivity.this, MainActivity.class);
        startActivity((Intent)it);

        return true;

    }

    return super.onKeyDown(keyCode, event);
}

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

    backBtn = (Button) findViewById(R.id.backBtn);

    webView = (WebView) findViewById(R.id.webView1);
    webView.getSettings().setJavaScriptEnabled(true);

    Bundle bundle = getIntent().getExtras();
    webView.loadUrl(bundle.getString("url"));

    webView.setWebViewClient(new myWebViewClient());

    backBtn.setOnClickListener(new View.OnClickListener(){
        @Override
        public void onClick(View v) {
            Intent it = new Intent(PromotionActivity.this, MainActivity.class);
            startActivity((Intent)it);
        }
    });



}




public class myWebViewClient extends WebViewClient {
    @Override
    public boolean shouldOverrideUrlLoading(WebView view, String url) {
        view.loadUrl(url);
        return true;
    }
}

}

有什么可以解决这个问题的想法? 谢谢!

2 个答案:

答案 0 :(得分:0)

更改

Bundle bundle = getIntent().getExtras();
webView.loadUrl(bundle.getString("url"));

webView.loadUrl(getIntent().getStringExtra("url"));

注意

如果您使用Bundle,则下一个活动可以使用Bundle bundle = getIntent().getExtras();

修改

  • 在清单中添加权限。

    <uses-permission android:name="android.permission.INTERNET" />
    
  • 添加设置

    webView.getSettings().setJavaScriptEnabled(true);
    webView.getSettings().setSupportZoom(false);
    webView.getSettings().setJavaScriptEnabled(true);
    
  • 确保https://www.test.com/apppromotion.html可以正常加载。

修改

确保后退按钮可以显示在屏幕上。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:orientation="vertical">

        <WebView xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/webView1"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1" />


        <Button
            android:id="@+id/backBtn"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:height="50dip"
            android:background="#4d867f"
            android:text="Back"
            android:textColor="#f9f9f9"
            android:textSize="20dip" />

    </LinearLayout>
</RelativeLayout>

修改

你可以试试这个。

<WebView 
    android:id="@+id/web_view" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layerType="hardware"/>

您可以在xml代码中使用android:layerType

答案 1 :(得分:0)

网址目标的SSL“Lets Encrypt”配置错误。 这么简单,但我需要一段时间才能找到答案!因此,在寻找难以破解的解决方案之前,只需将webviewer指向另一个URL。