确定当前视图是否是特定活动

发布于 2024-12-04 17:57:05 字数 73 浏览 0 评论 0原文

我想在应用程序标题栏中的徽标上设置一个意图,以便在单击时返回主输入屏幕,除非我们已经在该屏幕上。我该如何在 if 语句中检查这一点?

I am wanting to set an intent on a logo in the titleBar of my application to go back to the main entry screen when clicked unless of course we are already at that screen. How do I go about checking this in an if statement?

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

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

发布评论

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

评论(1

国产ˉ祖宗 2024-12-11 17:57:05

除非我没有正确理解你的意思,否则你应该能够检查该类:

if(getClass() == MainActivity.class){

}

尝试一下,看看它是否有效。

Unless I don't understand you correctly, you should just be able to check the class:

if(getClass() == MainActivity.class){

}

Try that and see if it works.

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