I\'m working on an App, and I am getting weired errors. I put in some String resource in res/values/strings
and saved it. Now If I want to access it in an Activ
what i had was
import android.R;
instead of
import com.example.project.R;
android.R does not have your resources it only has the general android resources.
Clean the project in eclipse, and try running.If this doesn't resolve your issue, from a already running emulator uninstall the app, and run it again from eclispe.