gpt4 book ai didi

Android/Eclipse 问题 - "id cannot be resolved or is not a field"错误

转载 作者:太空狗 更新时间:2023-10-29 16:09:37 24 4
gpt4 key购买 nike

您好,我今天开始尝试开发 Android 应用程序,但是我遇到了一个问题:

我决定尝试使用本教程制作 Web View - http://developer.android.com/resources/tutorials/views/hello-webview.html

但是,当我将代码放入 OnCreate() 方法时,出现“id connot be resolved or is not a field”错误。这是我的代码:

主.xml:

<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>

HelloWebView.java:

package com.example.hellowebview;

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

public class HelloWebView extends Activity {
WebView mWebView;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

mWebView = (WebView) findViewById(R.id.webview);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.loadUrl("http://www.google.com");
}
}

我尝试过清理、CTRL+SHIFT+O,然后完全重新启动项目。语句中有错误: mWebView = (WebView) findViewById(R.id.webview);Eclipse 只是说“id 无法解析或不是一个字段”

此外,我今天使用 developer.android.com 上的指南安装了所有东西,并正确地遵循了所有步骤。我以前在这台电脑上做过 Java 程序,所以我认为没有与 JDK/JRE 相关的问题。

最佳答案

我通过简单地重新启动计算机设法解决了这个问题。我想为了让所有开发工具正常工作,需要重新启动计算机吗?我不敢相信我之前没有考虑过这样做。感谢那些试图提供帮助的人。

关于Android/Eclipse 问题 - "id cannot be resolved or is not a field"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6011723/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com