图书馆项目和资源

发布于 2024-11-04 23:06:08 字数 373 浏览 1 评论 0原文

我开发了一个Android库项目,其中包含所有常用代码和资源 需要另外2个项目。 问题是,在公共库的类中,如果分别在项目 A 或项目 B 上使用,我需要加载不同的资源。

如果我输入 R.string.myId 它找不到资源,因为它不在 CommonLib 上,但它是在项目 A 和 B 上定义的。

我如何解决此问题?在此类项目上获得某种“多态性”的正确方法是什么? 之类的代码。

 if  (ctx.getPackageName().equals("packageName A")
 else if (ctx.getPackageName().equals("packageName B"))

也许我在公共库中放入了诸如“提前感谢”

I have developed an Android library project that contains all the common code and resources
need to 2 other projects.
The problem is that in a class of common library I need to load a different resource if it is used on project A or project B, respectively.

If I type R.string.myId it doesn't find the resource because it isn't on CommonLib, but it is defined on projects A and B.

How I can resolve this problem? What is the right way to obtain a kind of 'polymorphism' on this type of projects? Maybe I put in common library a code such as

 if  (ctx.getPackageName().equals("packageName A")
 else if (ctx.getPackageName().equals("packageName B"))

Thanks in advance.

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

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

发布评论

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

评论(1

莳間冲淡了誓言ζ 2024-11-11 23:06:08

您可以将某种存根资源添加到库项目中,并在应用程序项目中“覆盖”它们。或者,您可以将资源的默认值添加到库项目中,并根据需要将其中一些资源添加到应用程序项目中。

You can add some kind of stub resource to your library project and "override" them in application projects. Or you can add default values for resources to your library project and add some of this resources to application projects if necessary.

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