Android平台的Spring框架,利用Hook技术实现Android三大组件免清单注册即可使用。 Controller概念的引入让整个框架变得好用了很多。(暂停更新,以后维护Baymax-1.0)
The Spring framework of Android platform, using Hook technology to implement the three Android components of Android, can be used.The introduction of the Controller concept makes the whole framework much easier.
1.Add it in your root build.gradle at the end of repositories (添加maven仓库到根目录下的build.gradle):
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
2.Add the dependency(添加依赖到app下的build.gradle)
dependencies {
...
compile 'com.github.xuehuiniaoyu:Baymax:[Latest release]'
}
1.
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
2.
<dependency>
<groupId>com.github.xuehuiniaoyu</groupId>
<artifactId>Baymax</artifactId>
<version>[Latest release]</version>
</dependency>
1.Create Application
public class ExampleApplication extends BaymaxApplication {
@Override
public void onCreate() {
super.onCreate();
Baymax.single().setAnnotationsPackage("com.disney4a.baymax_example.app").play();
}
}
2. Example Activity
@Tag_Activity(name = "test-activity")
public class TestActivity extends BaymaxCompatActivity {
...
}
3. Open the Activity
Baymax.single().activity("test-activity").start();
1.Example Controller
@Tag_Controller(uri = "http://www.baidu.com")
public class TestController {
public static final String TAG = TestController.class.getSimpleName();
/**
* 访问百度
* @param correspondents
*/
@Tag_Controller.Path(name = "getBaidyContent")
@Tag_Http
public void baidu(Correspondents correspondents, final TextView textView) {
correspondents.setExpectation(new HttpExpectation() {
@Override
public void onRepay(HttpRepay repay) {
try {
final String result = System.currentTimeMillis()+" - "+repay.getResponse().body().string();
textView.post(new Runnable() {
@Override
public void run() {
textView.setText(result);
}
});
} catch (Exception e) {
}
}
});
correspondents.go();
}
@Tag_Controller.Path(name = "list", value = "/test.xml")
@Tag_Return(type = Tag_Return.REDIRECT)
public String jump(Correspondents correspondents, String name, int age, Object obj) {
Log.i(TAG, "name="+name + " age="+age + " obj="+obj);
RequestScope.single().put("name", name);
RequestScope.single().put("age", age);
RequestScope.single().put("obj", obj);
return "test-activity-result";
}
}
2.How to Call Controller Method
Baymax.single().execute("getBaidyContent", baiduResult);
Baymax.single().controller("list").execute("张三", 38, new Timer());
correspondents参数为自动创建,只要通过Path注解的方法都必须保证第一个参数为Correspondents或Correspondents的子类型。 你不用管这个对象是怎么来的,你只需要定义它的类型,框架会帮你创建这个对象。
除了correspondents之外的其他参数都要在execute方法执行的时候传递进来。
Please follow this example