Android活动历史堆栈问题

发布于 2024-09-16 12:47:07 字数 616 浏览 11 评论 0原文

在我的应用程序中,我遇到了活动历史记录堆栈问题。事实上,考虑到我有 5 个活动:

  1. 启动画面
  2. 注册
  3. 登录
  4. 忘记密码
  5. 主页

我会看到:

  • 首次启动(用户未登录):可能有 3 种不同的线框
    • 启动画面 ->注册 ->首页
    • 启动画面 ->注册(已经是会员)->登录(有效日志)->首页
    • 启动画面 ->注册(已经是会员)->登录 ->忘记密码(通过邮件接收登录名/密码)->登录(有效日志)->首页
  • 其他启动(用户注册):启动画面 ->主页(自动日志)

问题是: 我想要 2 项任务,一项带有启动画面、注册、登录和忘记密码,另一项带有启动画面和主页。 为什么 ?因为从主页返回应该关闭应用程序,但返回到上一个活动(根据线框进行注册或登录)。 在 SignUp 和 SignIn 上使用 history=true 定义活动可以执行此操作,但不允许 ForgottenPassword ->登录和登录 ->注册 :(

感谢您的帮助

In my application, I have problem with activity history stack. Indeed, consider I have 5 activities :

  1. Splashscreen
  2. SignUp
  3. SignIn
  4. ForgottenPassword
  5. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

行至春深 2024-09-23 12:47:08

有多种方法可以执行此操作,其中一种方法是:

每当启动 Home 活动时,请使用 startActivityForResult。当主 Activity 退出时(用户回击),将通知之前的 Activity。如果您不希望显示该活动,请立即完成该活动。您可以使用请求或结果代码来帮助您确定是否要再次显示活动。

我相信您也可以执行以下操作:

startActivity(homeActivityIntent);
finish();

当您启动家庭活动时,从堆栈中删除以前的活动。

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:

startActivity(homeActivityIntent);
finish();

to remove the previous activity from the stack when you start the home activity.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文