0

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?

midhunhk
  • 5,560
  • 7
  • 52
  • 83

2 Answers2

0

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

Victor Laerte
  • 6,446
  • 13
  • 53
  • 102
0

Just Remove this line- `import android.R;' from your activity will solve your Problem.

Sharad Mhaske
  • 1,103
  • 9
  • 19