我用 eclipse 创建了一个 android 应用程序,但是当我尝试执行时,我遇到了这个问题。
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;
}
}
在我使用“R”的指令中:setContentView(R.layout.activity_main);
builder tell me an error and exactly"R cannot be resolved to a variable"
我已经阅读了一些关于此的内容,但我还没有找到我的解决方案。就像 R 是android.R
而不是我的布局文件夹。我不知道该怎么办!我需要一点提示。这真的是我的第一个安卓应用程序。