I am currently writing a program for an android app and I keep running into a problem where I get an error "id cannot be resolved or is not a field"
. For example I have a line of code:
mBodyText = (EditText) findViewById(R.id.body);
After viewing the R.java
class there is no id class. I previously copied and pasted an example online and it also implemented a line of code that was similar and it added the id class to R.java
.
I'm just wondering how to correct this problem. I have researched it and some people suggested to others to import android.R
and this corrects some errors but then creates new ones saying that the part after is not in that category.