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.

For some odd reason I'm getting this error: raw cannot be resolved or is not a field

I'm trying to do the following

   MediaPlayer click = MediaPlayer.create(this, R.raw.button_click.mp3);

in my onCreate method.

I've checked the folder & mp3 file, and it's <project-name>/raw/button_click.mp3. I've tried:

  • Cleaning up my project
  • Restarting Eclipse
  • Making it R.raw.button_click
  • Checking if everything's lowercased & spelled correctly

Help, please!

share|improve this question
Raw might be used as a keyword in eclipse or android – Maulik J Oct 13 '11 at 17:05
No , it was suppose to be in <project-name>/res/raw/.mp3 – John Oct 13 '11 at 17:20

1 Answer

Shouldn't it be in projectname/res/raw, instead of projectname/raw?

share|improve this answer
Oh my, you're right! Thanks!! – John Oct 13 '11 at 17:19
1  
I'm glad to help, John. If you could mark my answer as accepted, that would be awesome. ;) Thanks! – Chad Schultz Oct 13 '11 at 20:53

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.