Android活动堆栈问题

发布于 2024-09-16 02:19:03 字数 221 浏览 6 评论 0原文

在我的应用程序中,我遇到了活动管理问题。 事实上,考虑到我有 3 项活动: - 启动画面 - 登入 -

我会看到的主页: - 首次启动(用户未登录):启动画面 ->登录 ->首页(登录有效) - 其他启动(用户注册):启动画面 ->主页(自动日志)

问题是: 从登录或主页返回始终会关闭应用程序。 但在第一次启动时,从主页返回登录。 如何防止这种情况发生?

谢谢

In my application, I have problem with activity management.
Indeed, consider I have 3 activities :
- Splashscreen
- SignIn
- Home

I would see :
- First launch (user not logged) : Splashscreen -> SignIn -> Home (log in valid)
- Other launch (user registered) : Splashscreen -> Home (auto log)

The problem is :
Back from SignIn or Home closes always the application.
But with the first launch, back from Home go back to SignIn.
How to prevents this ?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

天气好吗我好吗 2024-09-23 02:19:03

将Home的onCreate()中写的代码复制到onStart()中......
执行此操作以及代码其他部分的一些细微更改将解决您的问题......

Copy the code written in onCreate() of Home to onStart().....
Doing this along with some minor changes in other parts of the code will solve your problem...

哭了丶谁疼 2024-09-23 02:19:03

在清单中,设置 android:noHistory="true" 进行登录。

In the manifest, set android:noHistory="true" For SignIn.

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