如何在 Android 的选项卡内创建选项卡?
当我点击一个选项卡时,如何让另外三个选项卡可供点击?
我是 Android 新手,正在做一个简单的项目。
When I tap a tab, how do I make there to be three more tabs available to tap?
I'm new to Android, and I'm doing a simple project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以按照下面的示例代码进行操作(动态创建控件)。如果您愿意,还可以按照以下逻辑与 xml 布局一起使用。
希望有帮助。
You can follow my sample code below (create controls on the fly). If you want to, you can also follow the logic below for use with xml layout.
Hope it helps.
如果您使用 TabActivity 以及在 XML 中定义的选项卡布局,则只需创建另一个 TabActivity 和其他布局文件,并且在第一个文件中,当您创建意图时,其中一个意图将是第二个 TabActivity。
If you are using a TabActivity with your tab layout defined in XML, then simply make another TabActivity and other layout file, and in the first one, when you are making the intents, one of the intents would be the 2nd TabActivity.
您最好制作一个
而不是
例如,这里是代码:
}
xml 也可以在下面的链接中找到。有关此类设计的优质资源可以在这里找到:
http://www.google.co.uk/search?q=create+tabs +in+android&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-GB:official&client=firefox-a
You'd be better off making a
rather than
So for example, here is the code:
}
The xml can be found in the below link also. Good resources on this type of design can be found here:
http://www.google.co.uk/search?q=create+tabs+in+android&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-GB:official&client=firefox-a