ActionBarSherlock (v3.x) requires that you compile with Android 3.2. The reason you don't see the R.java file is because you are probably using the previous version to compile, which means that some styles that are used on Android 3.0+ cannot be found.
Make sure you create Android 3.2, the target API 11+ in your manifest, and use JDK 1.6. These are common errors with compiling a library.
source share