[android-developers] Re: Finish Activity(Urgent)

2008-04-16 Thread Greg
hello guys thank you very much for your time but i still coudlnt find the right solution A BC D A main screen B shows some items C shows some items D select that item and delete it I used on activity Result to refresh the data of C so that i would

[android-developers] Re: Finish Activity(Urgent)

2008-04-16 Thread hackbod
On Apr 16, 5:10 am, Greg <[EMAIL PROTECTED]> wrote: > when i used this code > this.finish(); > startSubActivity(i, ACTIVITY_CREATE); As I said before, you want to start the new activity before finishing the current one. Otherwise you are first finishing the current one and, yes, there is a time

[android-developers] Re: Finish Activity(Urgent)

2008-04-16 Thread Larry @ z
Hi greg, I think you can try to use 1 activity and 3 xml layout, and tried to setContentView() when you want to move from one panel to another( each panel <-> each xml layout). the setContentView() will change the whole screen, and you can keep your backend data model (& update states) in one ac

[android-developers] Re: Finish Activity(Urgent)

2008-04-16 Thread rezar
I just change the exit button to "back" on B and C activity. I think it is usual in all mobile applications to go back to A then exit the application. On Apr 3, 11:23 am, Greg <[EMAIL PROTECTED]> wrote: > I have three activies > > A B C > > i start sub activ

[android-developers] Re: Finish Activity(Urgent)

2008-04-16 Thread Greg
when i used this code this.finish(); startSubActivity(i, ACTIVITY_CREATE); new activity stared but in new activity for moments it shows old activity y does it so ? On Apr 16, 3:17 pm, Greg <[EMAIL PROTECTED]> wrote: > ok > > but what about this scenerio > > A --->B "before C i finish

[android-developers] Re: Finish Activity(Urgent)

2008-04-16 Thread Greg
ok but what about this scenerio A --->B "before C i finished B" > C "before D i finished B" ->D from now D i have to go back to B again if user press cancel button when user press Cancel Button C onActivity Result will be called in A so i have to ca

[android-developers] Re: Finish Activity(Urgent)

2008-04-15 Thread Larry @ z
as deepark said, you can A create B, B finished, Kill B, let A create C, C finished, kill C, return to A. On Apr 16, 1:04 pm, Greg <[EMAIL PROTECTED]> wrote: > so what is the solution for this problem ? > > any tested solution would be appreciated > > please help me out ? > > On Apr 15, 11:46 am,

[android-developers] Re: Finish Activity(Urgent)

2008-04-15 Thread Greg
so what is the solution for this problem ? any tested solution would be appreciated please help me out ? On Apr 15, 11:46 am, hackbod <[EMAIL PROTECTED]> wrote: > Actually you want to finish B -after- starting the next activity. > > And yes, the activities get overlapped -- first B is paused, t

[android-developers] Re: Finish Activity(Urgent)

2008-04-14 Thread hackbod
Actually you want to finish B -after- starting the next activity. And yes, the activities get overlapped -- first B is paused, then C is created and resumed, then B is stopped and finished. It is designed this way to allow B to save all of its important state before the next activity takes over,

[android-developers] Re: Finish Activity(Urgent)

2008-04-14 Thread Deepak Singh
Before you start sub activity C finish the subactivity B using finish() .Hope this Works On Tue, Apr 15, 2008 at 10:29 AM, Greg <[EMAIL PROTECTED]> wrote: > > but activities are getting overlapping while finishing > > On Apr 3, 9:36 pm, hackbod <[EMAIL PROTECTED]> wrote: > > Fwiw, there will be a

[android-developers] Re: Finish Activity(Urgent)

2008-04-14 Thread Greg
but activities are getting overlapping while finishing On Apr 3, 9:36 pm, hackbod <[EMAIL PROTECTED]> wrote: > Fwiw, there will be a better way to accomplish this in an upcoming > SDK. > > On Apr 3, 6:13 am, xingye <[EMAIL PROTECTED]> wrote: > > > override B.onActivityResult and callfinish() > >

[android-developers] Re: Finish Activity(Urgent)

2008-04-03 Thread hackbod
Fwiw, there will be a better way to accomplish this in an upcoming SDK. On Apr 3, 6:13 am, xingye <[EMAIL PROTECTED]> wrote: > override B.onActivityResult and call finish() > > On 4月3日, 下午5时23分, Greg <[EMAIL PROTECTED]> wrote: > > > I have three activies > > > A B

[android-developers] Re: Finish Activity(Urgent)

2008-04-03 Thread xingye
override B.onActivityResult and call finish() On 4月3日, 下午5时23分, Greg <[EMAIL PROTECTED]> wrote: > I have three activies > > A B C > > i start sub activity from A then i startsubactivity from B > > i just want to do like when i finish C ..it finish all activi

[android-developers] Re: Finish Activity(Urgent)

2008-04-03 Thread Semeria Stefano
Hi, I am not an expert but I think that you should be able to call the Activity.finish() method just after you call the startSubactivity for C in Activity B. If I understood correctly the Forwarding.java sample in samples\ApiDemos\src\com\google\android\samples\app performs exactly what you ne