我刚刚下载并安装了新的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文件。


当前回答

在将一些图形放入可绘制文件夹后,我也遇到了同样的问题。有一些错误,当我试图清理,R.java文件不存在。

所以我仔细检查了一下,发现有一些文件的文件名是大写的,有一些文件的文件名是相同的,但是文件扩展名不同。我重命名了这些文件,每个文件都有一个小写的唯一名称。记住,Android关心的是文件名,而不是扩展名。

也许这对你或其他读者有帮助。

其他回答

这是一个很老的帖子,我今天有一个新发现。我已经创建了一个活动,我把它放在另一个包(错误)。在新创建的类中,eclipse无法解析R。

我尝试了很多地方提到的所有方法,但我没有注意到我把它放在了不同的包装里。挣扎了几分钟后,我发现我放错包装了。

如果您没有将Activity保存在Activity包中,则会得到此错误。

我的解决方案(在Eclipse Juno上)是点击“Fix Project properties”,通过:

在项目上单击鼠标右键 选择Android工具菜单 单击修复项目属性

ps.首先检查R库是否未实现,res/文件夹中的所有文件是否正常。

只是清理和重建你的项目有时会有帮助

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.

将构建目标从1.5或1.6更改为2.2 (API版本8),并检查string.xml中是否有%字符。如果是,则替换为%%。