Re: [android-developers] Activity Restart On Rotate Phone

2011-04-20 Thread Me
Dear Anik Ralhan; Add below lines to your menifest file android:configChanges=orientation and one of activty method need to override . . public void onConfigurationChanged(Configuration newConfig) { super.onConfigurationChanged(newConfig); } If still

Re: [android-developers] Activity Restart On Rotate Phone

2011-04-11 Thread anik ralhan
hey can you please send me the steps that you followed,actually m also facing the same problem On Sun, Apr 10, 2011 at 2:56 PM, Me tonasirin...@gmail.com wrote: Hi thanks group I solved this one On Mon, Apr 11, 2011 at 1:34 AM, TreKing treking...@gmail.com wrote: On Sun, Apr 10,

[android-developers] Activity Restart On Rotate Phone

2011-04-10 Thread Jons Jean
Hi community ; I am facing a problem , I am working on an application where I am creating dynamic UI ,I install this application in my android phone problem is this when I rotate phone its activity got restart , How I can handle it ? From google I find the way to handle this

Re: [android-developers] Activity Restart On Rotate Phone

2011-04-10 Thread TreKing
On Sun, Apr 10, 2011 at 1:12 AM, Jons Jean tonasirin...@gmail.com wrote: problem is this when I rotate phone its activity got restart , How I can handle it ? Read the documentation. This is covered extensively in the life cycle documentation. From google I find the way to handle this to add

Re: [android-developers] Activity Restart On Rotate Phone

2011-04-10 Thread Me
Hi thanks group I solved this one On Mon, Apr 11, 2011 at 1:34 AM, TreKing treking...@gmail.com wrote: On Sun, Apr 10, 2011 at 1:12 AM, Jons Jean tonasirin...@gmail.com wrote: problem is this when I rotate phone its activity got restart , How I can handle it ? Read the