Hi i am working with Gestures and i need to import but i m getting error
com.android.internal.R;
The import com.android.internal.R cannot be resolved
kindly help me , please
feedback
|
|
I have a couple suggestions: 1) Make sure you don't have any other errors other than the R-related errors. Right-click your project folder in Eclipse, Android Tools -> Fix Project Properties. 2) Check to make sure you have the correct R imported. Sometimes the default Android.R can be imported. | |||
|
feedback
|
|
You don't say why you need access to It is possible to get to the internal resources by calling
Be aware that any name that you use could disappear in future versions of Android. | ||||
|
feedback
|
|
First of all, what is Gestures ? Do you have a package named com.android.internal in your gen folder ? Doest it contain R.java ? If not, try Project->Clean in Eclipse. If it still doesn't work, you may have an error in your XML layout files. | |||
|
feedback
|