Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to Java and Android development. I want to show a splashscreen in my PhoneGap 2.2.0 Android App, but when I add

 super.setIntegerProperty("splashscreen", R.drawable.splash);

to my main class (extending DroidGap) Eclipse is throwing the error 'splash cannot be resolved or is not a field'.

share|improve this question
thank you both! I found out by myself. But I give this to gerg84 because Tom has more points... ;-) – headkit Nov 23 '12 at 14:47

2 Answers

up vote 4 down vote accepted

R is a class created by the Android SDK when your application is compiled using the resources in the res folder. Ensure the splash image file exists in /res/drawable/splash.png (or required equivalent folders).

NB: The image name must be all in lower case.

share|improve this answer

R.drawable.splash refers to a file named splash.png in res/drawable (or the resolution specific drawable folders)

Create that file and it will compile correctly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.