为什么会发生这种R故障(Eclipse Android Java)?

时间:2012-11-05 23:00:45

标签: java android eclipse layout r.java-file

这是Why is my layout unable to be resolved? (Android/Java)的延续(阅读第一个答案的评论),因为我需要发布大量代码,而在评论中这样做是行不通的。

package scouting.form;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;

public class Scouting extends Activity {

    CheckBox sground,strough,shigh,dground,dtrough,dhigh;
    Button logout,clr;
    EditText TeamNum;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_scouting);
        TeamNum=(EditText) findViewById(R.id.TBTeamNum);
        sground=(CheckBox) findViewById(R.id.CBSGround);
        dground=(CheckBox) findViewById(R.id.CBDGround);
        strough=(CheckBox) findViewById(R.id.CBSTrough);
        dtrough=(CheckBox) findViewById(R.id.CBDTrough);
        shigh=(CheckBox) findViewById(R.id.CBSHigh);
        dhigh=(CheckBox) findViewById(R.id.CBDHigh);
        logout=(Button) findViewById(R.id.Logout);
        logout.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                finish();
            }
        });
        clr=(Button) findViewById(R.id.CLREntries);
        clr.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                sground.setActivated(false);
                strough.setActivated(false);
                shigh.setActivated(false);
                dground.setActivated(false);
                dtrough.setActivated(false);
                dhigh.setActivated(false);
            }
        });
    }
    @Override public void onBackPressed(){}
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_scouting, menu);
        return true;
    }
}

每行“R.xxx.xxx”都说“R无法解析为变量”。

我尝试干净,因为它几乎肯定是eclipse中的一个小故障,我尝试导入android.R,保存和清理,然后取消导入android.R(导入android.R打破了处理它的一切,但我故意这样做,保存和清洁,希望“刷新”它以使故障消失。我也试过重启Eclipse。还有这个错误。

1 个答案:

答案 0 :(得分:1)

我修好了!所以我在原始文件夹中有一个名为“Gangam Style.mp3”的文件(我不知道它是如何到达那里的)。我注意到一个错误,说这是一个无效的名字。我进入文件夹并删除了该文件,所有错误都消失了。我想有一个糟糕的文件与Eclipse混乱,无论出于什么原因,它都找不到R。

对于其他任何收到R无法解析的错误的人,请确保您没有导入“android.R”并确保您的任何文件夹中没有任何名称无效的文件。