我刚刚下载并安装了新的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 studio需要一段时间来加载东西。 这种事在我身上经常发生。我只是坐下来,看一个youtube视频5分钟,而它完成加载。

到那时,不能解析符号R已经消失了!:-)

如果你已经反复检查了上面提到的一切,确保项目已经建成,我建议你耐心等待……如果不清理并重建项目。

其他回答

So I have run into this problem multiple times when switching build targets. Usually doing a Project >> Clean worked for me. This last time, however, it did not. Finally I tried to open my default.properties file, located under the root project folder. I received an error message stating that it was out of sync with the file system. I actually deleted it and copied a coworkers version which allowed eclipse to rebuild my R file. I will paste what it looks like below. It is named 'default.properties'.

# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
# 
# This file must be checked in Version Control Systems.
# 
# To customize properties used by the Ant build system use,
# "build.properties", and override values to adapt the script to your
# project structure.

# Indicates whether an apk should be generated for each density.
split.density=false
# Project target.
target=android-3

值得在AndroidManifest.xml中检查一下。属性包的值正确。

那就是:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="your.correct.package.name"
   ...

更改后,将重新生成R.java。

不幸的是,现有的问题没有一个有用。由于我的问题似乎是平台特定的,这可能只适用于如果你是Ubuntu 64位(我目前使用Ubuntu 12)。 一开始我没有看到“问题”窗口,它已经暗示了一个解决方案,在64位环境中,你需要32位库,这可能会丢失:

Sudo apt-get安装ia32-libs

我安装了软件包并重新构建了我的项目,这为我解决了这个问题。

在追踪了这个问题之后,我在Android文档中发现了这样的说明:

http://source.android.com/source/using-eclipse.html

*注意:Eclipse有时喜欢添加一个“导入android”。R"的声明 使用资源的文件顶部, 特别是当您要求Eclipse这样做时 对导入进行排序或管理。这 会让你的成就破碎。看 为了这些错误的输入 语句并删除

在浏览Android示例教程时,我经常使用Ctrl + Shift + O命令来“组织导入”并生成任何缺失的导入语句。有时这将生成不正确的import语句,该语句将隐藏在构建时自动生成的R.java类。

每次我遇到R未生成甚至消失的问题时,这都是由于XML布局文件中的某些问题导致应用程序无法构建。