My eclipse is not showing me IDs of resources. In XML it appears with no error but in .java it does not. I have cleaned the project, I refreshed it but it still does not appear.
I am talking about the findViewById (R.id. );
What can I do?
My eclipse is not showing me IDs of resources. In XML it appears with no error but in .java it does not. I have cleaned the project, I refreshed it but it still does not appear.
I am talking about the findViewById (R.id. );
What can I do?
Probably you should have imported the wrong R class, make sure that you not imported the native R android class. And every update in your XML should be saved to be avaliable in your R class
Just Remove this line- `import android.R;' from your activity will solve your Problem.