Android: R$id class not loaded?
- by llappall
Hi,
I have a Android class extending Application to generate some global classes, etc.
It works, in that I can, for example, get the context, etc.
BUT, when I try this:
row = (TextView) findViewById(R.id.list_row_text);
I get
R.id.list_row_text = Class not loaded : <mypackage>.R$id
Any ideas why this is happening?
Thanks
Gerardo