仅当选择某个值时才使选项卡可见

发布于 2024-10-18 12:10:12 字数 210 浏览 0 评论 0 原文

我有一个由微调器组成的主页。微调器中的值由 Json 值填充。

我的应用程序中有 5 个选项卡,其中第一个选项卡由主页本身组成。

流程如下:主页 -> 从微调器中选择一个值 -> 然后仅在选择值时才显示选项卡 -> 选项卡选项卡中的第一页再次是主页,并选择了微调器值,

任何人都可以帮助我,因为我只能在从微调器中选择项目时才显示选项卡...

I have a home page which consists of a Spinner. The values in the spinner are populated by Json values.

I have 5 Tabs in the application in which the first tab consists of the Home page itself.

The flow is like this Home Page->Select a Values from Spinner->Then display the Tabs only if a value is selected-> The first page in the Tabs is the Home page again with the Spinner Value selected

Can anyone please help me because i am stuck at displaying tabs only when a item is selected from the spinner...

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

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

发布评论

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

评论(2

九局 2024-10-25 12:10:12

选项卡标签的视图是一个 TabWidget。在您的 TabActivity 中尝试:

getTabWidget().setVisibility(View.GONE);

隐藏选项卡标签。如果要隐藏选项卡标签和选定的选项卡内容,则需要使 TabHost 不可见:

getTabHost().setVisibility(View.GONE);

The view for the tab labels is a TabWidget. In your TabActivity try:

getTabWidget().setVisibility(View.GONE);

to hide the tab labels. If you want to hide the tabs labels and the selected tab contents, you want to make the TabHost invisible:

getTabHost().setVisibility(View.GONE);
浴红衣 2024-10-25 12:10:12

我认为嵌套活动是解决这个问题的方法...

对于任何可能感兴趣的人,都有详细的 在这里写博客,其中的代码可能会帮助有需要的人。

I think Nested Activities is the way to go for this...

For anyone who might be interested there's a detailed blog here with code which might help some one in need.

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