在同一个项目中制作2个包

发布于 2024-10-21 13:26:56 字数 40 浏览 3 评论 0原文

如何在同一个项目中制作2个包并且每个包都有R.java 谢谢帮助我

how to make 2 package in the same project and each package has R.java
thx to help me

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

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

发布评论

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

评论(2

月光色 2024-10-28 13:26:56

如果您使用 Android 版 Eclipse IDE 并创建新包,它将在该包的 gen 文件夹中自动生成 R.java 文件。但如果您不使用 eclipse,那么您可以像之前为该包创建的那样创建 R.java 文件。

If you are using eclipse IDE for android and creates new package, It will generate the R.java file automatically in that package in gen folder. But if you are not using eclipse then you can create R.java file as you have created previously for that package.

失与倦" 2024-10-28 13:26:56

作者:Google Android 开发人员

您永远不应该手动编辑此文件

Android 开发者

R级
在 Eclipse 中,打开名为 R.java 的文件(位于 gen/ [生成的 Java 文件] 文件夹中)。它应该看起来像这样:
包 com.example.helloandroid;
项目的 R.java 文件是文件中定义的所有资源的索引。您可以在源代码中使用此类作为一种快捷方式来引用项目中包含的资源。这对于 Eclipse 等 IDE 的代码完成功能来说尤其强大,因为它可以让您快速、交互式地找到您正在寻找的特定参考。
您的看起来可能与此略有不同(也许十六进制值不同)。现在,请注意名为“layout”的内部类及其成员字段“main”。 Eclipse 插件注意到名为 main.xml 的 XML 布局文件,并在此处为其生成了一个类。当您向项目添加其他资源(例如 res/values/string.xml 文件中的字符串或 res/drawable/ 目录中的可绘制对象)时,您将看到 R.java 发生变化以跟上。
当不使用 Eclipse 时,该类文件将在构建时为您生成(使用 Ant 工具)。
您永远不应该手动编辑此文件。

by Google Android developper

You should never edit this file by hand

Android Developper

R class
In Eclipse, open the file named R.java (in the gen/ [Generated Java Files] folder). It should look something like this:
package com.example.helloandroid;
A project's R.java file is an index into all the resources defined in the file. You use this class in your source code as a sort of short-hand way to refer to resources you've included in your project. This is particularly powerful with the code-completion features of IDEs like Eclipse because it lets you quickly and interactively locate the specific reference you're looking for.
It's possible yours looks slighly different than this (perhaps the hexadecimal values are different). For now, notice the inner class named "layout", and its member field "main". The Eclipse plugin noticed the XML layout file named main.xml and generated a class for it here. As you add other resources to your project (such as strings in the res/values/string.xml file or drawables inside the res/drawable/ direcory) you'll see R.java change to keep up.
When not using Eclipse, this class file will be generated for you at build time (with the Ant tool).
You should never edit this file by hand.

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