Hi,
In my application, I have problem with activity history stack. Indeed, consider I have 5 activities :
- Splashscreen
- SignUp
- SignIn
- ForgottenPassword
- Home
I would see :
- First launch (user not logged) : 3 differents wireframes possible
- Splashscreen -> SignUp -> Home
- Splashscreen -> SignUp (already member) -> SignIn (valid log) -> Home
- Splashscreen -> SignUp (already member) -> SignIn -> ForgottenPassword (login/password receive by mail)-> SignIn (valid log) -> Home
- Other launch (user registered) : Splashscreen -> Home (auto log)
The problem is :
I would like 2 tasks, one with Splashscreen, SignUp, SignIn and ForgottenPassword and an other with Splashscreen and Home.
Why ? Because back from Home should close the application but go back to previous activity (SignUp or SignIn according wireframe).
Define activity with history=true
on SignUp and SignIn do that but does not allow ForgottenPassword -> SignIn and SignIn -> SignUp :(
Thanks for your help