动态类加载以针对多个 Android 版本
我想为多个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Class.forName 根据不同的条件加载不同的类:
以及代码中的其他位置:
请注意,您的实现中需要一个可访问的空构造函数。 getActualTarget() 是你的神奇方法,它将目标作为字符串标识符返回...
You could use
Class.forName
to load different classes depending on different conditions:and somewhere else in your code:
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...如果您使用最新的目标(即 2.2)编译项目,它仍然可以在 1.5 上运行。
If you compile you project with latest target, i.e. 2.2 it still will run on 1.5.