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

其他回答

I would say "R can not be resolved" is something too general and can be misleading at times. I also had the same problem many times ago even when I first create a new project (which mean I did not mess with the code yet). Most of the time I just need to update my sdk manager (as some people have mentioned). But in my recent case, I found out that the path to my project file is too long (something like this E:\R&D\ANDROID\ANDROID BASIC\Folder 1\ Folder 2\..... \Folder n\MyProject). The folder names also contain spaces character. I thought it could be the case and indeed it's true, when I created a new project in another folder with shortest path possible, and none of the folders' names containing space character, it worked as normal.

尝试使您的新XML布局文件名小写。例如,使用my_file.xml而不是myFile.xml。

要解决此问题,请转到java构建路径->order和Export,选中所有复选框,选择ok,然后清理并构建项目,导入包名R文件(Ex com.demo.R)。它的工作原理。

对我来说有用的是安装“Android SDK Build-tools”。打开Android SDK管理器,安装Android SDK构建工具。它还帮助更新了Eclipse中的android开发平台:帮助>检查更新

一些答案建议重新启动计算机。我发现重启adb服务器就足够了——如果你刚刚更新了Android SDK,这一点尤其正确。

通过linux shell重启adb:

$ cd $ANDROID_SDK/platform-tools
$ ./adb kill-server
$ ./adb start-server

您可能需要重新启动Eclipse,以便重新连接到重新启动的adb服务器。如果Eclipse没有自动编译项目,您可能需要执行一个clean/build。