[android-developers] Your Most Common Errors

2012-03-31 Thread Raghav Sood
Hi all, I'm working on compiling a list of the commonly faced Android errors, and how to solve them. I sincerely doubt I've encountered all of them personally, hence this post. Which are the errors that you have faced most commonly, and how did you solve them? Please reply to this thread, it'll on

Re: [android-developers] Your Most Common Errors

2012-03-31 Thread Mark Murphy
On Sat, Mar 31, 2012 at 3:09 PM, Raghav Sood wrote: > Which are the errors that you have faced most > commonly, and how did you solve them? I would bet that the #1 most common problem is "my R is screwed up". Symptoms include findViewById() returning something unexpected (e.g., a LinearLayout whe

Re: [android-developers] Your Most Common Errors

2012-03-31 Thread Raghav Sood
Thanks for the reply Mark. And I am combing through StackOverflow as well. Just checking both sources to make sure I don't miss any out. Thanks On Sun, Apr 1, 2012 at 12:50 AM, Mark Murphy wrote: > On Sat, Mar 31, 2012 at 3:09 PM, Raghav Sood > wrote: > > Which are the errors that you have face

Re: [android-developers] Your Most Common Errors

2012-04-01 Thread Zsolt Vasvari
> > I would bet that the #1 most common problem is "my R is screwed up". > Symptoms include findViewById() returning something unexpected (e.g., > a LinearLayout where you expected a Button). Solution is to clean the > project (Project > Clean from Eclipse or ant clean from the command > line). >

Re: [android-developers] Your Most Common Errors

2012-04-01 Thread Nikolay Elenkov
On Sun, Apr 1, 2012 at 4:09 AM, Raghav Sood wrote: > Hi all, > > I'm working on compiling a list of the commonly faced Android errors, and > how to solve them. > .. > Errors related to Eclipse problem are also welcome. killall -s 9 eclipse Works like a charm. -- You received this message beca

Re: [android-developers] Your Most Common Errors

2012-04-01 Thread Kristopher Micinski
On Sat, Mar 31, 2012 at 3:09 PM, Raghav Sood wrote: > Hi all, > > I'm working on compiling a list of the commonly faced Android errors, and > how to solve them. I sincerely doubt I've encountered all of them > personally, hence this post. Which are the errors that you have faced most > commonly, a