How to get stacks not to show at the same time
Posted: Wed Jan 07, 2015 3:20 am
Ususally Android only shows one stack at a time. However, on Android, I have a stack this is called "login" and a stack called "app". When the user logs in successfully in the login stack, the user is brought to the "app" stack using
The problem with this is that sometimes parts of the "login" stack are shown on the "app" stack so what I am seeing is a picasso drawn picture of a stack. The problem is exacerbated by going from the "app" stack to the "login" stack via the code:
How does one keep this from happening?
-Will
Code: Select all
go to card 1 of stack "app"
Code: Select all
go to card 1 of stack "login"
-Will