无法使用 webview 查看网页

Not able to view webpage using webview

这是 Web 视图的 xml 文件

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.testing.WebViewExample">

    <WebView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/webView"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>  

此代码适用于 Webview.java

      public class MainActivity extends AppCompatActivity {
      @Override  
      protected void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.activity_main);  
        WebView mywebview = (WebView) findViewById(R.id.webView);  
        
        mywebview.loadUrl("https://www.google.com/");  
  
      
    }  
}  

但问题是我无法查看 google 并且它显示错误,因为网页不可用

无法加载位于 https://www.google.com/ 的网页,因为:

网络::ERR_CACHE_MISS

您可能需要将 INTERNET 权限添加到您的清单文件中:

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

另一个参考:loadUrl() in Android Webview fails with net::ERR_CACHE_MISS