Android Eclipse 添加新活动
我正在使用 Win 7.0、Eclipse 和 android SDK。我想在 AndroidManifest.xml 应用程序选项卡中添加新活动,如本教程所示 Android开发-添加屏幕&按钮处理程序
我将活动名称添加到清单中,但它不会自动将其转换为链接。例如,我无法单击“名称”(它不是文章中所示的超链接),因此我无法创建我的类。
你能帮助我吗?问题是什么 ?
I am using Win 7.0, Eclipse and android SDK. I want to add new activity in AndroidManifest.xml Application tab as it is shown in this tutorial Android Development – Adding Screens & Button Handlers
I add an Activity name to my manifest but it does not automatically turn it into a link. e.g. I cannot click the "Name"(It is not a hyperlink as shown in the article), thus I cannot create my class.
Can You Help me? what is the problem ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
1.进入
Androidmanifest.xml
文件并在标签内添加activity如果您的活动名称是 secondaryAct。
2.创建一个名为
secondAct
的类。3.如果您使用按钮转到下一个活动,请在
secondAct.java
中使用以下代码1.Go to the
Androidmanifest.xml
file and add the activity inside the tagif your activity name is secondAct.
2.Create a class named
secondAct
.3 . if you are using a button for going to next activity, use the following code in
secondAct.java
转到下面显示 AndroidManifest.xml 的小选项卡,并向您显示它的 XML 代码。它应该看起来像这样:
好的,单击“添加”,然后选择顶部的框,上面写着“在应用程序中的顶层创建一个新元素”,然后您应该会看到一个带有可链接名称*的框。
Go to the small tab underneath that says AndroidManifest.xml and shows you the XML code for it. It should look like this:
Okay, click on ADD, then select the top box that says "Create a new element at the top level, in Application" and then you should get a box with linkable NAME*.
您需要首先创建类,然后在清单中指向该类...仅将类名称放入清单中是不够的。它不会自动为您创建它。
另外,首先创建类会更容易,因为 Eclipse 会为您自动完成类名/路径。
编辑:啊哈!我明白你说的是哪个链接...
是的,您需要首先实际创建该类才能出现。
You need to create the class first, then point to that class in your manifest... just putting the class name in the manifest is not enough. It will not automatically create it for you.
Also, it is easier to create the class first because then Eclipse will autocomplete the class name/path for you.
EDIT: AH HAH! I see what link you are talking about...
Yeah, you need to actually create the class first for that to appear.