测试ARouter路由框架功能

开发工具:Android Studio
框架资源:alibaba/ARouter
其他: - -


1.把框架放到base包中时,需要注意以下配置依旧需要,否则会找不到路径:

android {
    defaultConfig {
    ...
    javaCompileOptions {
        annotationProcessorOptions {
        arguments = [ moduleName : project.getName() ]
        }
    }
    }
}
dependencies {
   ...
    annotationProcessor 'com.alibaba:arouter-compiler:x.x.x'
    ...
}

2.拦截器中的各种问题:

//init 中获取的 context 为 application.context 不能强转为 Activity 对象
@Interceptor(priority = 7)
public class TestInterceptor implements IInterceptor {
    Context mContext;//MyApp

    /**
     * 在回调中,如果要改变路由目标,不能通过修改接口中的 postcard.path 的值
     * 如果要达到目的,还是需要重新获取ARouter对象进行操作。
     * 但是,如果不改变路由目标,可以在这里添加或者修改携带参数
     * @param postcard 路由信息实体类
     * @param callback 回调
     */
    @Override
    public void process(final Postcard postcard, final InterceptorCallback callback) {
        if (IAppProvider.APP_INTERCEPTOR_PATH.equals(postcard.getPath())) {
            /**
             * 接口中创建,需要如果需要 context 对象,不能直接用 init 中的 context
             * 否则会报出 unable-to-add-window-token-null-is-not-for-an-application 错误
             * 需要传入 activity 对象
             */
            final AlertDialog.Builder ab = new AlertDialog.Builder(ButtonActivity.getThis());
            //...一些设置
            ab.setNegativeButton("算了", new DialogInterface.OnClickListener() {
                @Override
                public void onClick(DialogInterface dialog, int which) {
                    //中断跳转
                }
            });
            ab.setPositiveButton("继续", new DialogInterface.OnClickListener() {
                @Override
                public void onClick(DialogInterface dialog, int which) {
                    //根据需要拦截跳转到其他页面,或者进行其他操作
                }
            });
           
            Handler handler = new Handler(mContext.getMainLooper());
            handler.post(new Runnable() {
                @Override
                public void run() {
                    ab.create().show();
                }
            });
        } else {
            callback.onContinue(postcard);
        }
    }

    @Override
    public void init(Context context) {
        this.mContext = context;
        L.w(TestInterceptor.class.getName() + " has init.");
    }
}

3.关于转场动画

如果你和我一样按照代码写,而且没有看到效果,那么请在开发者模式下打开过渡动画

4.关于自动注入

在测试拦截器功能的时候加入了一些代码,然后报出了下面的错误:

Error:Execution failed for task ':app:compileDebugJavaWithJavac'. 
> Compilation failed; see the compiler error output for details.

在stackoverflow 和 github 上面都逛了一下,发现没有类似的情况,多是 java8 lamba之类的情况,所以又回到了 AS 本身上来。一番波折后,发现是有 @Autowired 注解的属性不能为 private

5.关于服务获取

阿里巴巴readme文档里,对于如何获取服务并没有说得很清楚,看了下源码发现是在 inject 方法中加入了 autowire 名单中去。那么应该是加上 autowire 标签并且在页面 inject 一下就可以了吧。

// 服务注入类型为接口 类型为 AppService1 具体实现类时会注入失败
    @Autowired(name = IAppProvider.APP_SERVICE_1)
    IAppProvider service1;

暂时以上。具体使用都已经测试清楚后,会另外写一篇详细的,此篇仅作记录使用。

你可能感兴趣的:(测试ARouter路由框架功能)