main cannot be resolved or is not a field

Android Eve picture Android Eve · Feb 28, 2011 · Viewed 87.4k times · Source

This error occurs in setContentView line in this code snippet:

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

I understand that in order for R.layout.main to be resolved, a file named res/layout/main.xml must be present.

It is present and valid (i.e. Eclipse marks it as perfect without any errors). So, what else could cause this error?

BTW, I already tried Project > Clean. The error persists.

Answer

Cristian picture Cristian · Feb 28, 2011

Make sure you don't have this in your imports:

import android.R;

but:

import your.application.packagename.R;