做过JavaEE肯定对Spring不陌生,尤其是spring的IOC,真是太好用了。顺着这个思想,Android上有没有spring来实现IOC。搜索一下,果然spring已经推出了spring for android,不过可惜的是它并不支持IOC,但是却在官网发现了这个么一篇文章http://blog.springsource.org/2011/08/26/clean-code-with-android/,里面讲了android依赖注入(IOC)的实现思想和已经实现依赖注入的几个项目,自己感觉AndroidAnnotations最为出色,不仅jar包小,而且功能强大,极大的减少了代码量。本文将会讲到AndroidAnnotations的部署和简单应用。
先看普通代码和用AndroidAnnotations的比较:
布局文件:
普通代码:
使用AndroidAnnotations的代码
超简洁有木有。
AndroidAnnotations部署
环境:
系统:windows 8 (64bit)
开发工具:Eclipse 3.8
JDK版本:jdk1.6
构建工具:Ant(Eclipse默认的build tool)
androidannotations:2.7
步骤:
1. 下载并导入jar包
2. 配置Ant
3. 配置Eclipse
1. jar包官网下载地址https://github.com/excilys/androidannotations/wiki/Download;
解压后的两个jar包androidannotations-api-2.7.1.jar和androidannotations-2.7.1.jar分别放在项目的libs文件夹下和compile-libs文件夹下(compile-libs需要自己创建,创建在项目的根目录下就行。如果放在了同一文件夹下必然出错,因为两个包里存在相同的文件路径和文件名)。
2. 配置Ant只需要在项目的根目录下创建两个文件即可(build.xml和custom_rules.xml)
创建build.xml使用cmd命令
D:\Program Files\adt-bundle-windows-x86_64\sdk\tools>android update project --path F:\work_in_geekon\workspace\TestAA
至于custom_rules.xml手动创建即可,首先添加如下内容
打开$ANDROID_SDK_ROOT$/tools/ant/build.xml(例如我的D:\ProgramFiles\adt-bundle-windows-x86_64\sdk\tools\ant\build.xml),找到节点<target name="-compile"…
- <targetnametargetname="-compile"depends="-build-setup, -pre-build, -code-gen, -pre-compile">
- ...
- </target>
将上述内容全部copy到custom_rules.xml中。找到以下节点(在custom_rules.xml文件中),并添加
<target name="-compile" ...>
...
<path id="project.javac.classpath">
...
<fileset dir="compile-libs" includes="*.jar"/>
</path>
...
</target>
绿色部分为新增内容。保存文件,Ant的配置也就OK了。
3. 配置Eclipse。
选择项目右键,Properties >> Java Compiler ,确保编译器版本为1.6。
Properties >> Java Compiler >> Annotation Processing >> Enable annotation processing(开启)。
Properties >> Java Compiler >> Annotation Processing >> Factory Path >> 添加jar包,就是之前放在compile-libs目录下的androidannotations-2.7.1.jar。
重新编译(Clean)下项目既可以了。
注意:AndroidManifest.xml文件里的Activity的名字都要在原来的基础上加一个下划线(”_”)。例如
<activityandroid:name="com.example.testaa.MainActivity">
</activity>
改成
<activityandroid:name="com.example.testaa.MainActivity_"></activity>
在Activity跳转的时候也要如此new Intent().setClass(this, MainActivity_.class);
除了@Eactivity @ViewById@Click之外还有
@EApplication
@EBean
@EFragment
@EService
@EView
@EviewGroup
@App
@Bean
@Fullscreen
……
更多的应用请参照
官网http://androidannotations.org/
GitHubhttps://github.com/excilys/androidannotations/wiki
PS:androidannotations项目在导出的时候如果路径包含中文就会提示错误路径未找到。
更新1( 2014-8-14)
好像有不少人开始用这个东西了。有人留言说部署的时候还是有问题,我根据自己写的步骤走了一遍没有发现问题。这次我用了官方最新的3.0.1的版本部署了个项目,大家可以自己看看。其他环境和上面的介绍一致。大家导入项目后做的就是第3步,配置Eclipse。
项目demo下载http://download.csdn.net/detail/pz0605/8145593