清理项目,因为XML文件中的错误,我的R.java文件不会生成?

时间:2014-02-14 04:32:15

标签: java android xml genymotion

我试图在我的Genymotion模拟器中运行我的项目,但是当我运行Android应用程序时,我添加的所有新更新按钮都没有显示。所以,我制作了一个我的项目副本来运行“干净”,因为我在清理它之后没有生成我的R.java文件的问题,而我是正确的,因为R.java文件没有生成在复制的项目中。我几乎肯定这是我的XML文件中的一个问题,但我的XML文件没有显示任何错误。

之前我也遇到了同样的错误,我在这里发布了这个错误:R cannot be resolved to a variable?

未生成R文件,因此我在MainActivity中调用mBitmap = BitmapFactory.decodeResource(getResources(),R.drawable.crayon);的所有调用都声明“R无法解析为变量”,我知道这些变量指向我的XML文件中的问题。

这是我的activity_main.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical"
   android:paddingBottom="@dimen/activity_vertical_margin"
   android:paddingLeft="@dimen/activity_horizontal_margin"
   android:paddingRight="@dimen/activity_horizontal_margin"
   android:paddingTop="@dimen/activity_vertical_margin"
   android:gravity="center"
   tools:context=".MainActivity" >

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal|fill_horizontal|center"
    android:orientation="horizontal" >

    <RadioGroup
        android:id="@+id/greyorcolor"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <RadioButton
            android:id="@+id/grey"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:checked="true"
            android:text="@string/reyscale" />

        <RadioButton
            android:id="@+id/color"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:checked="true"
            android:text="@string/color" />
    </RadioGroup>

    <RadioGroup
        android:id="@+id/smallorlarge"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <RadioButton
            android:id="@+id/large"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:checked="true"
            android:text="@string/large" />

        <RadioButton
            android:id="@+id/small"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:checked="true"
            android:text="@string/small" />
    </RadioGroup>
</LinearLayout>

<edu.berkeley.cs160.opalkale.prog2.DrawingView
    android:id="@+id/drawing"
    android:layout_width="fill_parent"
    android:layout_height="0dip"
    android:layout_marginBottom="3dp"
    android:layout_marginLeft="5dp"
    android:layout_marginRight="5dp"
    android:layout_marginTop="3dp"
    android:layout_weight="1"
    android:orientation="vertical"
    android:src="@drawable/ic_launcher" />

</LinearLayout>

我的strings.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<resources>

   <string name="app_name">Drawing</string>
   <string name="greyscale">Greyscale</string>
   <string name="color">Color</string>
   <string name="small">Small Brush</string>
   <string name="large">Large Brush</string>
   <string name="hello_world">Hello world!</string> </resources>

我的MainActivity.java文件:

package edu.berkeley.cs160.opalkale.prog2;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Bitmap munBitmap = BitmapFactory.decodeResource(getResources(),
            R.drawable.crayon);
    Bitmap mBitmap = munBitmap.copy(Bitmap.Config.ARGB_8888, true);
    Canvas canvas = new Canvas(mBitmap);

    DrawingView drawingView = (DrawingView) findViewById(R.id.drawing);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

}

问题窗口: enter image description here     在这里输入代码

5 个答案:

答案 0 :(得分:2)

我对此并不十分清楚,但你使用的是eclipse吗?如果你是,我有类似的问题,没有生成R.java,但eclipse没有标记任何错误。在所有情况下,XML布局文件中确实存在错误,但我要检测它们,我必须打开“问题”视图以找出它们是什么。如果您尚未打开它,可以尝试:Window -> Show View -> Problems

答案 1 :(得分:0)

这是因为eclipse无法构建项目。尝试重新启动eclipse并查看是否创建了R文件。如果现在不再清洁,看它是否有效。

答案 2 :(得分:0)

您在radiobutton的名称中有一个特殊字符@

    <RadioButton
        android:id="@+id/grey"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:checked="true"
        android:text="@Greyscale" />                  // Here 

您需要删除@

答案 3 :(得分:0)

这种情况多次发生在我身上,这就是我使用Android工作室的原因,

让我们来主要答案:)

首先,如果仍然没有生成R.java文件,请再次保存项目“清理”,然后重新启动。可能希望这会有效:)

这是我发布时的问题。 :)

Suddently, "R.java" was deleted from my "CheckBox" program?

答案 4 :(得分:0)

错误有两种可能性:

1: 你forgot to add drawable在drawable文件夹中命名为“crayon”。

2: package error:您只需要检查import语句。 它应该看起来像

import com.test.example.R;

你的包名= com.test.example