I am creating an Android project and I am facing the following error in my IDE.
package br.com.app;
import android.R;
public class MinhaApp extends Activity {
@Override
public void onCreate (Bundle savedInstanceState) {
super.onCreate (savedInstanceState);
setContentView (R.layout.main);
}
}
But my IDE gives the following error :
R cannot be resolved
on the line
setContentView (R.layout.main);
Why is this happening? The main.xml
file is in the folder res/layout
correctly.