为什么我的网页没有显示在WebView上?

时间:2019-09-06 03:00:17

标签: java android android-webview

对不起,我不会说正确的英语,但是有人可以帮助我吗? 我想用网络视图显示我的公司网页,我在“活动”中输入公司网站的网址,并使用loadUrl()进行加载,但是当我运行项目时,它永远不会显示该网页。为什么会发生?我在浏览器中输入一个URL,它可以工作,但是在Web视图中,它不工作。请帮助我

这是我的MainActivity.java

package com.ithits.hits;

import androidx.appcompat.app.AppCompatActivity;
import android.graphics.Bitmap;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.webkit.WebView;
import android.webkit.WebViewClient;

public class MainActivity extends AppCompatActivity {
private WebView webView;
private String webUrl = "https://hits.hokimtong.org/";
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        webView = (WebView) findViewById(R.id.webView);
        webView.setWebViewClient(new MyWebViewClient());

        webView.getSettings().setLoadsImagesAutomatically(true);
        webView.getSettings().setJavaScriptEnabled(true);
        webView.getSettings().setDomStorageEnabled(true);


        webView.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
        webView.setWebViewClient(new WebViewClient());
        webView.loadUrl(webUrl);
        Log.e("tag", "Url Loading " + webUrl");
    }
    private class MyWebViewClient extends WebViewClient{
       @Override
       public boolean shouldOverrideUrlLoading(WebView view, String url) {
           view.loadUrl(url);
            return true;
        }
    }
}

这是我的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.ithits.hits">
    <uses-permission android:name="android.permission.INTERNET"/>

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

这是我的activity_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/webView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity"/>

2 个答案:

答案 0 :(得分:0)

您应该尝试以下解决方案:https://stackoverflow.com/a/49298210/6429241 或将此库用于Webview:FinestWebView

答案 1 :(得分:0)

我的问题已解决,谢谢大家的帮助,我的设备操作系统版本中的问题太旧了,我必须购买另一台设备才能运行我的项目