All Projects → JeremyLiao → android-modular

JeremyLiao / android-modular

Licence: Apache-2.0 license
一套Android组件化的实施方案和支撑框架🆕🎉🎉

Programming Languages

java
68154 projects - #9 most used programming language
groovy
2714 projects

android-modular

一套Android组件化的实施方案和支撑框架 image

组件通信框架

  • 组件方法调用框架
    • 编译时组件
    • 插件
    • 运行时框架
  • 组件消息总线框架

组件化构架

  • 壳工程
  • 组件层
    • 组件对外暴露层
      • 接口定义
      • 消息定义
    • 组件实现层
  • 公共模块 image

组件结构

组件对外暴露层

image

消息定义

public class ModuleBEvent implements IModularEvent {
    final public String content;

    public ModuleBEvent(String content) {
        this.content = content;
    }
}

接口定义

public interface ModuleBInterface extends IInterface {
    void launchModuleBMainPage(Context context);
}

组件实现

用注解@ModuleService制定实现的接口

@ModuleService(interfaceDefine = ModuleBInterface.class)
public class ModuleBInterfaceImpl implements ModuleBInterface {
    @Override
    public void launchModuleBMainPage(Context context) {
        if (context == null) {
            return;
        }
        context.startActivity(new Intent(context, ModuleBActivity.class));
    }
}

组件间通信

组件间接口调用

userName = ModuleRpcManager.get()
        .call(ModuleAInterface.class)
        .getUserName();

组件间消息

监听消息
ModularBus.toObservable(ModuleBEvent.class)
        .observe(this, moduleBEvent ->
                Toast.makeText(ModuleAActivity.this,
                        moduleBEvent != null ? moduleBEvent.content : "",
                        Toast.LENGTH_SHORT).show());
发送消息
ModularBus.toObservable(ModuleBEvent.class).post(new ModuleBEvent("hello world"));

使用组件通信框架

使用组件接口调用框架

配置classpath
classpath "com.jeremyliao.modular-tools:plugin:0.0.1"
在组件中处理注解
annotationProcessor "com.jeremyliao.modular-tools:processor:0.0.1"
在壳工程中使用插件
apply plugin: 'modular-plugin'
运行时使用
implementation "com.jeremyliao.modular-tools:manager:0.0.1"

使用组件消息总线框架

implementation 'com.jeremyliao:live-event-bus:1.7.2'
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].