Honeycomb activity spontaneously restarts itself?

I have found the problem finally! I have a spinner in the ActionBar, and didn't realise the listener was activated when the activity is first created. In landscape this just added another menu to the multiview pane (which I have recently noticed was another bug), but in portrait fires a new activity every time the last one is created.

Have you tried adding android:configChanges="keyboarddden|orientation" in manifest under the Actvity tag, and overriding @Override public void onConfigurationChanged(Configuration newConfig) { // TODO Auto-generated method stub super. OnConfigurationChanged(newConfig); } the above method in the same Activity...

– Espiandev Aug 18 at 12:54 just like what I have put. And remember to put in proper Activity. Both tag and method.. – ntc Aug 18 at 12:55 have found the error in my code after much hunting (see above), but thank you for your advice anyway – Espiandev Aug 18 at 13:13 @Espiandev.. thats good to know..... – ntc Aug 18 at 13:14.

I've got a really odd problem which comes out when testing my app on the Honeycomb emulator. When the "tablet" is rotated to portrait, my main Activity seems to just get stuck, and restarts itself over and over again. The stack trace below seems to give no indication of what is going on, and I haven't been able to pinpoint the restart when debugging either.

The same thing doesn't occur on a Gingerbread phone, which uses the same portrait layout. I do not own a Honeycomb device (yet) so I cannot see whether this is a quirk of the emulator or not.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions