如何在 Android 中的选项卡之间导航

发布于 2024-10-08 13:51:37 字数 337 浏览 2 评论 0原文

我在我的 Android 应用程序中创建了一个 TabActivity。当用户选择第二个选项卡时,将出现一个警报对话框。当用户单击对话框的取消按钮时,有什么方法可以导航到上一个选项卡。

问候 dj


我在这里找到了解决方案:

Android - Switch Tabs from在选项卡内的活动内

在我的例子中,我使用了“GrandPrix”的解决方案。

I have created a TabActivity in my android application. When user selects the second tab, an alert dialog will appear. Is there any way to navigate to the previous tab when user clicks the cancel button for the dialog box.

regards
dj


I found the solution here:

Android - Switch Tabs from within an Activity within a tab

In my case, I have used the solution of 'GrandPrix'.

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

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

发布评论

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

评论(1

香橙ぽ 2024-10-15 13:51:37

我认为您需要首先了解选项卡小部件:

  1. http://developer .android.com/resources/tutorials/views/hello-tabwidget.html
  2. http://www.androidpeople.com/android-tabhost-tutorial-part-1/

您可以使用 setCurrentTab 方法设置选项卡:

   tab_host.setCurrentTab(2);   // 2nd tab button is showing initially

同样,您可以在取消按钮上设置选项卡按钮。

I think you need to first know about the Tab Widget:

  1. http://developer.android.com/resources/tutorials/views/hello-tabwidget.html
  2. http://www.androidpeople.com/android-tabhost-tutorial-part-1/

You can set the tab using setCurrentTab method:

   tab_host.setCurrentTab(2);   // 2nd tab button is showing initially

same way, you can set the tab-button on the cancel button.

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