Android Question Activity changing

Carles Escudé

Member
Licensed User
Longtime User
Hello!

I have 3 activities, A, B and C.
- From activity A I go to B using StartActivity,
- From activity B I go to C using StartActivity,
- Then, from C if I use Activity.Finish I want to return to B but it goes to the first one, A.

How can I do it?

Thanks in advance
 

ilan

Expert
Licensed User
Longtime User
Hello!

I have 3 activities, A, B and C.
- From activity A I go to B using StartActivity,
- From activity B I go to C using StartActivity,
- Then, from C if I use Activity.Finish I want to return to B but it goes to the first one, A.

How can I do it?

Thanks in advance

You can just write in acitivity_pause event of activity C startactivity(B)
 
Upvote 0
Top