在java android studio中出现“找不到符号WebView视图”错误

Getting "Cannot find symbol WebView view" error in java android studio

提问人:Satish Thakur 提问时间:5/27/2022 最后编辑:Satish Thakur 更新时间:5/27/2022 访问量:7822

问:

package com.example.appthree;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.webkit.WebView;

public class MainActivity extends AppCompatActivity {

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


        String Htmlurl = "file://android_assets/index.html";
        WebView view = (WebView) this.findViewById(R.id.webView);
        view.getSettings().setJavaScriptEnabled(true);
        view.loadUrl(Htmlurl);

    }
}

这是我的MainActivity.java文件。我想在assets文件夹内的应用程序上运行html文件。但是我收到这个错误-> 错误:找不到符号 WebView 视图 = (WebView) this.findViewById(R.id.webView); ^ symbol: 变量 webView 位置:类 ID

看截图(https://prnt.sc/yx65CzqLDBmk)

更新____ 这是我的activity_main.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=".MainActivity">


    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Welcome"
        android:textSize="48sp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.421"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.043" />

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World"
        tools:layout_editor_absoluteX="136dp"
        tools:layout_editor_absoluteY="193dp" />

</androidx.constraintlayout.widget.ConstraintLayout>

java android-studio webview 语法错误

评论

0赞 tobi1805 5/27/2022
也许检查一下你是否设置了 ID 喜欢activity_main.xmlandroid:id="@+id/webView"
0赞 Satish Thakur 5/27/2022
@tobi1805导入 com.example.appone.R 类不起作用。我是android studio的新手,无法调试activity_main.xml。但我认为一切都与activity_main.xml

答:

1赞 Halil Ozel 5/27/2022 #1
  1. 您需要在AndroidManifest.xml

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

  1. 确保组件 into 的 id 为 。webViewactivity_main.xmlwebView
WebView
    android:id="@+id/webView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

评论

0赞 Satish Thakur 5/27/2022
我创建了具有相同问题的新项目。我已经更新了我的问题并添加了activity_main.xml中存在的代码,请看一下。你能把上面的代码添加到我的文件中吗,我不知道我应该在我的文件中的什么位置添加这段代码。
2赞 Ticherhaz FreePalestine 5/27/2022 #2

您需要在内部添加 作为 Halil Ozel 的代码。像这样的东西WebViewConstraintLayout

<?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=".MainActivity">

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

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Welcome"
    android:textSize="48sp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.421"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.043" />

<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World"
    tools:layout_editor_absoluteX="136dp"
    tools:layout_editor_absoluteY="193dp" />

</androidx.constraintlayout.widget.ConstraintLayout>