This question already has answers here:
R cannot be resolved - Android error
(108个回答)
已关闭8年。
因此,我直接从Google的android网站复制了此教程示例内容,却收到一个错误,指出R.id无法解决。
这是我的Java文件
这是我的
同样,在需求发布中,您还必须为布局使用 namespace 。
(108个回答)
已关闭8年。
因此,我直接从Google的android网站复制了此教程示例内容,却收到一个错误,指出R.id无法解决。
这是我的Java文件
package com.TestApp.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");
}
}
这是我的
res/layout/main.xml
<?xml version="1.0" encoding="utf-8"?>
<WebView android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
最佳答案
您必须导入您的R类
import com.TestApp.HelloWebView.R;
同样,在需求发布中,您还必须为布局使用 namespace 。
?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"/>
10-06 09:19