动态类加载以针对多个 Android 版本

发布于 2024-09-15 10:23:29 字数 340 浏览 4 评论 0原文

我想为多个 Android 版本(可能是每个版本)制作一个 Android 应用程序 我的问题是我想检查应用程序当前运行的 Android 版本是什么,并动态加载依赖于版本的类。这部分应该没问题。

我只是想知道如何在 Eclipse 项目中实现这一目标而不出现编译错误。 我的意思是,该项目是针对特定目标(1.5、2.1 ...)配置的,因此如果我的项目中的类与所选目标不兼容,则会导致错误。

有没有办法导出这些类,即使它们不适合平台(我考虑过一个单独的库,但话又说回来:如何在不编译 pbs 的情况下将这些类编译成库?)?这应该没问题,因为在我检查 Android 版本后要求他们加载之前,它们不会被加载。

谢谢!

I would like to make a single Android app for multiple Android versions (possibly every one of them)
My problem is that I want to check what is the version of Android the app is currently running on, and dynamically load a class which is version dependent. This part should be ok.

I just wonder how I can achieve that without compilation errors in my Eclipse project.
I mean, the project is configured for a particular target (1.5, 2.1 ...), so if a class in my project is not compatible wich the selected target, it will result in errors.

Is there a way to export this classes even if they are not fit for the platform (I thought about a separated lib, but then again : how to compile theses classes into a lib without compilation pbs?) ? This should be ok since they won't be loaded until I ask them to after having checked Android version.

Thanks!

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

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

发布评论

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

评论(2

爱情眠于流年 2024-09-22 10:23:29

您可以使用 Class.forName 根据不同的条件加载不同的类:

public interface MyType {}
public class MyTypeOn15 implements MyType {}
public class MyTypeOn16 implements MyType {}
public class MyTypeOn20 implements MyType {}
// ...

以及代码中的其他位置:

MyType myType = null;
if (getActualTarget().equals("1.5") {
   myType = Class.forName("MyTypeOn15").newInstance();
} else if (getActualTarget().equals("1.6") {
   myType = Class.forName("MyTypeOn16").newInstance();
} // ...

请注意,您的实现中需要一个可访问的空构造函数。 getActualTarget() 是你的神奇方法,它将目标作为字符串标识符返回...

You could use Class.forName to load different classes depending on different conditions:

public interface MyType {}
public class MyTypeOn15 implements MyType {}
public class MyTypeOn16 implements MyType {}
public class MyTypeOn20 implements MyType {}
// ...

and somewhere else in your code:

MyType myType = null;
if (getActualTarget().equals("1.5") {
   myType = Class.forName("MyTypeOn15").newInstance();
} else if (getActualTarget().equals("1.6") {
   myType = Class.forName("MyTypeOn16").newInstance();
} // ...

Note that you need an accessible empty constructor in your implementations. And getActualTarget() is your magic method that's returns the target as a String identifier...

ぶ宁プ宁ぶ 2024-09-22 10:23:29

如果您使用最新的目标(即 2.2)编译项目,它仍然可以在 1.5 上运行。

If you compile you project with latest target, i.e. 2.2 it still will run on 1.5.

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