Android 清单.xml
我正在研究 Google Android 开发者网站 (http://developer.android.com/resources/tutorials/views/hello-tabwidget.html) 的选项卡示例,但我陷入了步骤 2
。步骤 2 说“为三个活动中的每一个活动复制此内容,并将相应的标签添加到 Android Manifest 文件中”
我到底需要添加到 AndroidManifest.xml 中什么?
谢谢
I'm working on the Tabs example from Google Android Developers site (http://developer.android.com/resources/tutorials/views/hello-tabwidget.html) but I'm stuck in step 2.
At the very end of step 2 says "Duplicate this for each of the three activities, and add the corresponding tags to the Android Manifest file"
What exactly do I have to add to the AndroidManifest.xml?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您的清单文件应该是这样的:
这肯定会起作用!
This is how your Manifest file should be:
This will work for sure!!
只需添加每个活动 AndroidManifest.xml
just add every activity AndroidManifest.xml
基本上你已经像这样在 AndroidManifest.xml 中注册了每个活动
Basically you have register each activities in AndroidManifest.xml like this
您必须为这三个活动中的每一个添加相应的
标记。 AndroidManifest.xml 文件描述了应用程序的组件(以及其他内容 如权限和 API 级别支持)。在此示例中,您必须添加三个定义:
You have to add the corresponding
<activity>
tags for each one of the three activities. The AndroidManifest.xml file describes the components of the application (amongst other things like permissions and API level support).In this example you have to add three definitions: