两个不同项目的 R.java 的资源 id 冲突

发布于 2024-09-28 03:32:13 字数 439 浏览 0 评论 0原文

我有两个不同的项目 A & B. 在项目 AI 内部链接项目 B 的源,以便项目 A 的活动可以启动项目 B 的活动。我正在使用 Eclipse Galileo。

问题是,当我想编辑活动 B 中视图的值时,两个项目的资源 ID 存在一些冲突。因此,当我在活动 BI 中调用 findViewById() 时,会从活动 A 中获取视图。

我已经在项目 A 的 AndroidManifest 中声明了 Activity B。我什至尝试启动 Activity B 作为应用程序的入口点,但它根本没有显示任何内容。这就像 findViewById 仅尝试搜索项目 A 的视图,尽管我已正确指定了包名称。

findViewById(com.my.company.projectB.R.id.someView);

有人知道发生了什么事吗?我将非常感谢任何帮助。谢谢!

I have two different project A & B. Inside the project A I link the source from project B so activity from project A can start the activity from project B. I'm using Eclipse Galileo.

The problem is, when I want to edit the value of a view in activity B, the resource id from both projects have some conflicts in it. So when I call findViewById() in activity B I got a view from the activity A instead.

I've declared the activity B inside the AndroidManifest in project A. I've even tried to start the activity B as the entry point of the application but it didn't show anything at all. It's like the findViewById tried to search the view of project A only although I've specified the package name correctly.

findViewById(com.my.company.projectB.R.id.someView);

Does anyone have any idea about what's going on? I'll really appreciate any help. Thanks!

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

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

发布评论

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

评论(1

走过海棠暮 2024-10-05 03:32:13

我已经找到问题了。它位于我的项目 A 的清单文件中。我不应该在那里声明活动 B。基本上来说,为了正确地从另一个应用程序(项目 B)调用活动,需要完成以下操作:

1)。通过运行或调试来安装应用程序 B(当然!)。

2)。在自己的项目中正确声明了活动 B 的意图过滤器。无需在将调用它的项目中声明它(这是我的错误所在)。

3)。使用意图过滤器中指定的意图启动活动。

将答案发布在这里,以防其他人遇到与我相同的问题:)

I've found the problem. It lies within my manifest file of project A. I shouldn't have declared the activity B there. So basically said, in order to correctly call an activity from another application (project B) the things need to be done:

1). Install the application B (of course!) by running or debugging it.

2). Declared the intent-filter of activity B correctly in its own project. No need to declare it in the project which will call it (this is where my mistake was).

3). Start the activity using the intent specified in the intent-filter.

Posted the answer here just in case someone else encounter the same problem as mine :)

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