Android活动历史堆栈问题
在我的应用程序中,我遇到了活动历史记录堆栈问题。事实上,考虑到我有 5 个活动:
- 启动画面
- 注册
- 登录
- 忘记密码
- 主页
我会看到:
- 首次启动(用户未登录):可能有 3 种不同的线框
- 启动画面 ->注册 ->首页
- 启动画面 ->注册(已经是会员)->登录(有效日志)->首页
- 启动画面 ->注册(已经是会员)->登录 ->忘记密码(通过邮件接收登录名/密码)->登录(有效日志)->首页
- 其他启动(用户注册):启动画面 ->主页(自动日志)
问题是: 我想要 2 项任务,一项带有启动画面、注册、登录和忘记密码,另一项带有启动画面和主页。 为什么 ?因为从主页返回应该关闭应用程序,但返回到上一个活动(根据线框进行注册或登录)。 在 SignUp 和 SignIn 上使用 history=true
定义活动可以执行此操作,但不允许 ForgottenPassword ->登录和登录 ->注册 :(
感谢您的帮助
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有多种方法可以执行此操作,其中一种方法是:
每当启动 Home 活动时,请使用 startActivityForResult。当主 Activity 退出时(用户回击),将通知之前的 Activity。如果您不希望显示该活动,请立即完成该活动。您可以使用请求或结果代码来帮助您确定是否要再次显示活动。
我相信您也可以执行以下操作:
当您启动家庭活动时,从堆栈中删除以前的活动。
There a couple of ways to do this, one way:
Whenever you start the Home activity, use startActivityForResult. When the home activity exits (user hits back), the previous activity will be notified. If you don't want that activity to be shown, immediately finish that activity. You can use the request or result codes to help you determine if you want to show the activity again.
I belive you can also do something like this:
to remove the previous activity from the stack when you start the home activity.