我刚刚下载并安装了新的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不能解决的原因有几个。

大多数情况下,此错误发生在XML文件错误。这个错误可以通过Clean和重建你的项目来解决,也可以重新启动你的android studio。 有时候如果你在AndroidManifest中编码一些错误的东西,这个错误可能会发生,所以请检查这个。 如果资源包含相同的名称或包含无效字符,则会发生此错误。

如果你已经检查了这些,但你仍然面临着同样的问题,那么继续:


当Android Studio无法正确生成R.java文件时,就会出现这个错误,所以你必须遵循以下步骤:

第一步:从app目录中安全删除build文件夹。 步骤2:在Android Studio中,File -> Invalidate cache / Restart 步骤3:构建->清洁项目然后构建->重建项目。

所以构建文件夹将重新生成,希望错误已经消失。


如果仍然发现Error,那么可能您之前已经执行了包名重构。在这种情况下,您可以按ALT + ENTER一起导入R。

其他回答

如果您使用eclipse:有时eclipse会抑制资源文件中的错误消息。 解决方案:在布局文件夹中保存一个没有错误的临时资源。 重新构建项目。然后eclipse在资源文件中显示正确的错误。 删除临时资源。

删除main.out.xml。我是新手,还不知道这个文件是用来做什么的,但删除它解决了这个问题。

我今天也遇到了同样的问题。我尝试使用sdk管理器执行所有sdk更新。完成并重新启动IDE后,问题已解决。

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

R.java是Android Eclipse插件创建的文件 构建应用程序。R.java是在“gen”下创建的 目录中。此文件由“res”中的信息生成。 目录中。如果在Eclipse上运行select“Project”->“Clean… 菜单,它将删除,然后重新生成R.java文件。

“R不能被解决”的问题发生在你改变你的 在AndroidManifest.xml文件中的包名。它使用安卓系统 包名下创建子目录“gen”目录,其中 它存储R.java文件。

Eclipse may have problems executing clean, because it is confused about where the R.java file is when you have changed the Android package name. You can either rename the subdirectory under gen to match your new package name, or you can change your package name back to the old name. Do the clean and then change the package name to the new name you want. This works best if you stop Eclipse from trying to build while you are changing the package name. Under the "Project" menu uncheck the option to "Build Automatically" and also when the "Clean..." dialog asks if it should "Start a build immediately" uncheck the box so it doesn't try to build while you are changing the package name. After you have changed the name you can turn "Build Automatically" back on again.

Note that if your AndroidManifest.xml file package name does not match your Java package name, Eclipse will end up automatically adding an "import <your Android package name>.R;" line in all your .java files that have any references to R. If you change your AndroidManifest.xml package name, sometimes Eclipse does not update all of these added imports. If that happens, use the Eclipse refactoring (ALT + Shift + R) to change the import statement in one of your Java files to your new AndroidManifest.xml package name. It is best to do this while you have disabled "Build Automatically".