0

我在 adt 上制作了一个新应用,现在我想在手机上运行它,但它说有两个错误。这两个错误都是关于 R insrc > com.example.myfirstapp>MainActivity.java

这是我的代码:

package com.example.myfirstapp;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

public class MainActivity extends Activity {

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


    @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;
    }

}
4

2 回答 2

1

我认为resources您定义的内容不存在于您的应用程序中尝试更正它。

于 2013-08-12T13:57:18.620 回答
0

当应用程序正在构建并且代码中存在一些问题时,R.java将不会创建。但是在创建它时,您需要导入它。如果您使用的是 eclipse,请将鼠标悬停在此错误上并单击 Import (R. ...)

于 2013-08-12T14:00:48.100 回答