如何在 Android 中的选项卡之间导航
我在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您需要首先了解选项卡小部件:
您可以使用 setCurrentTab 方法设置选项卡:
同样,您可以在取消按钮上设置选项卡按钮。
I think you need to first know about the Tab Widget:
You can set the tab using setCurrentTab method:
same way, you can set the tab-button on the cancel button.