[android-developers] Re: Problem with app after update to 2.2

2010-07-09 Thread egbokalaka
By comparing the code in my Notepadv1.java vs the supplied solution, I found the error. in the onCreateOptionsMenu method I had: boolean result = onCreateOptionsMenu(menu) whereas the correct code was: boolean result = super.onCreateOptionsMenu(menu) The error caused my code to be called

[android-developers] Re: Problem with app after update to 2.2

2010-07-09 Thread egbokalaka
I have the identical menu stack overflow problem. I'm new to Android and Eclipse. MacOS 10.6.4 Eclipse 3.5.2 ADT 0.9.7.v201005071 Targeting 1.5 This occurs with the notepadv1 tutorial. On Jun 3, 8:44 am, Mark H. Nichols code.pr...@gmail.com wrote: On Jun 1, 2010, at 3:23 PM, Kiril Nedialkov