我刚刚下载并安装了新的Android SDK。我想创建一个简单的应用程序来测试它。

向导创建了以下代码:

package eu.mauriziopz.gps;

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

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

但是Eclipse给出了错误

R不能被分解

在网上

setContentView(R.layout.main);

Why?

PS:我在res/layout/下有一个名为main.xml的XML文件。


当前回答

只需进入Android Top菜单列表。点击构建菜单,在构建下点击重建项目。

其他回答

I had tried all of the above with no prevail. It turned out PhoneGap was causing a conflict with the Android SDK. After uninstalling PhoneGap, the Resources file started regenerating again. Another project, needed PhoneGap so I re-installed, and once again, the Android project (a different project) stopped auto-generating the R file - Build Automatically was checked, did the Clean, and restarted Eclipse - no dice. I removed PhoneGap and it was working once again. This was PhoneGap v 1.5 with the MDS 1.1 plugin for Eclipse.

解决方案:

Eclipse重新启动后项目干净。它们是自动生成的,否则你是XML内部的任何组件(如按钮)后按Ctrl + Shift + o。它自动生成R文件,然后错误就解决了。

检查XML文件的内容。如果layout_width或layout_height包含match_parent元素,则将其更改为fill_parent。这为我解决了问题。

我尝试了这个帖子上的大部分选项(以及其他许多选项),但没有一个对我有效。最后这个成功了,所以我想和大家分享一下……

我的机器上有多个版本的Eclipse IDE(因为我也从事与Android无关的项目)。我偶然地使用另一个Eclipse版本(非Android)使用的工作区创建了我的Android项目。由于这个原因,我猜有些奇怪的事情正在发生,我的R.java从未生成!

为了解决这个问题,我所做的就是创建一个新的工作空间,神奇地R.java开始生成,一切都很顺利……

所以,当你尝试所有其他选择时,也试试这个。希望这对你有用……

它为我工作与右击>Android工具>修复项目属性和重新启动Eclipse后的一些时间。