[android-beginners] Re: r cannot be resolved and other Eclipse/Android oddities

2009-12-30 Thread XCaffeinated
Hi oregonduckman, For the "R cannot be resolved" issue, make sure your R import is in the form: import your.package.name.R Sometimes a default of: import android.R will appear (I've not figured out the metric that causes this to occur). Remove the android.R import, and replace it with your

[android-beginners] Re: R cannot be resolved

2009-11-15 Thread Fred Grott(Android Developer, http://mobilebytes.wordpress.com)
use the windowhttp://mobilebytes.wordpress.com On Nov 14, 12:39 am, Indicator Veritatis wrote: > In general, the procedure you give is a useful one. Unfortunately, for > this particular problem (Eclipse complaining that R.main.java does not > resolve), that procedure will bring in the wrong 'R'.

[android-beginners] Re: R cannot be resolved

2009-11-14 Thread Indicator Veritatis
Lucky you! I already thought of that, I have tried it many times, it never solves it for me. Not even once. The only procedure I have found that will solve it is to delete the project, exit Eclipse and start all over again. On Nov 14, 8:47 am, Mehdi Achour wrote: > Usually cleaning the project (P

Re: [android-beginners] Re: R cannot be resolved

2009-11-14 Thread Mehdi Achour
Usually cleaning the project (Project > Clean) magically solves this for me. Mehdi On Sat, Nov 14, 2009 at 11:37 AM, Indicator Veritatis wrote: > One correction to what I wrote earlier: it is 'R.layout.main' that is > problematic, not 'R.main.java'. Fortunately, I am not getting this > spurious

[android-beginners] Re: R cannot be resolved

2009-11-14 Thread Indicator Veritatis
One correction to what I wrote earlier: it is 'R.layout.main' that is problematic, not 'R.main.java'. Fortunately, I am not getting this spurious error message from Eclipse right now, so I cannot verify which version of 'R' it tries to bring in, but I can verify that the line it has trouble on is t

[android-beginners] Re: R cannot be resolved

2009-11-13 Thread Indicator Veritatis
In general, the procedure you give is a useful one. Unfortunately, for this particular problem (Eclipse complaining that R.main.java does not resolve), that procedure will bring in the wrong 'R'. Instead, what the user needs to do is get the IDE to launch the emulator. That will rebuild the object

[android-beginners] Re: R cannot be resolved

2009-11-11 Thread eclipsed4utoo
If you are using Eclipse as your IDE, put the cursor on the R and hit Ctrl + Shift + O (the letter O). That will automatically add the needed import statement. Ryan On Nov 11, 10:42 am, jbrohan wrote: > Look at the other files in src/ There may be an R theredelete it! > > On Nov 8, 8:00 am,

[android-beginners] Re: R cannot be resolved

2009-11-11 Thread jbrohan
Look at the other files in src/ There may be an R theredelete it! On Nov 8, 8:00 am, benjamin goth wrote: > Hi I was doing fine going through the tutorials but suddenly whatever > SDK I use to build against I get that R cannot be resolved > I have the R.JAVA file in my gen folder and have not

[android-beginners] Re: "R cannot be resolved"

2009-10-31 Thread Farproc
F5 to refresh or clean your project and built it again. On 10月31日, 下午3时00分, eldo wrote: > Im a beginner in Android,When I run an application in ecllipse,an > error showing "R cant be resolved" How can i fix that error,thanks in > advance.. -- You received this message because you are subscribe

[android-beginners] Re: R cannot be resolved

2008-09-23 Thread Kah0ona
Yes, I got the same problem. Also just downloaded the Android SDK and ADT, working in Eclipse 3.2... The R.java file isn't generated appearantly... Any ideas? On Sep 23, 7:27 pm, agrawalswap <[EMAIL PROTECTED]> wrote: > Hi, > > I just d/l the Android sdk and ADT. > I created a new android projec

[android-beginners] Re: R cannot be resolved

2008-09-23 Thread Kah0ona
I have exactly the same problem. Also just downloaded it today, as you did appearantly. The R.java file is not (re)generated... On Sep 23, 7:27 pm, agrawalswap <[EMAIL PROTECTED]> wrote: > Hi, > > I just d/l the Android sdk and ADT. > I created a new android project in eclipse as per documentatio

[android-beginners] Re: R cannot be resolved

2008-09-23 Thread Xavier Ducrohet
If you had to add the android.jar manually, then you did not create the project properly. Always use the Android New Project wizard to create android project. You should be able to convert your standard java project into an android project by doing: - right click your project in the package expl

[android-beginners] Re: R cannot be resolved!

2008-07-19 Thread Mark Murphy
ramywhite wrote: > I did as you said and I have > successfully built all the samples except 2 samples "Snake" and > "LunarLander". I don't know why. 1. Did you get specific build-time or run-time errors for them? If so, what are the error messages? 2. Have you tried building them outside of Ec

[android-beginners] Re: R cannot be resolved!

2008-07-19 Thread ramywhite
Hi Mark, Thank you for your nice replay. I did as you said and I have successfully built all the samples except 2 samples "Snake" and "LunarLander". I don't know why. What is the difference between those 2 and the others? Thank you ramywhite --~--~-~--~~~---~--~~ Y

[android-beginners] Re: R cannot be resolved!

2008-07-18 Thread Mark Murphy
> I am new to Android. I have opened the notepad tutorial and it worked > very fine with Eclipse 3.4.0 under Windows XP but when I tried to open > the Snake sample, it gave me an error " R cannot be resolved" I have > noticed that there is no R.java in the project. What is I did wrong? I can't sp