AndroidRouter路由框架使用

凌浩雨發表於2018-04-02

Router專案地址

1. 新增依賴

android {
    defaultConfig {
        ...
        javaCompileOptions {
            annotationProcessorOptions {
                arguments = ["moduleName": project.name]
            }
        }
    }
}

dependencies {
    implementation `com.chenenyu.router:router:1.4.0-beta1`
    annotationProcessor `com.chenenyu.router:compiler:1.4.0-beta1`
}

2. Application中註冊

public class App extends Application{

    @Override
    public void onCreate() {
        super.onCreate();

        Router.initialize(new Configuration.Builder()
                // 除錯模式,開啟後會列印log
                .setDebuggable(BuildConfig.DEBUG)
                // 註冊模組名,每個Router使用的Module都要在這裡註冊
                .registerModules("module1", "module2", "app")
                .build());
    }
}

3. 跳轉URI

        /**
         * uri 可填寫網頁連結
         * 1. http://www.baidu.com/
         * 2. 動態新增路由中map集合中的鍵
         */
         Router.build(uri).callback(new RouteCallback() {
              @Override
              public void callback(RouteResult state, Uri uri, String message) {
                   if (state == RouteResult.SUCCEED) {
                       Toast.makeText(MainActivity.this, "succeed: " + uri.toString(), Toast.LENGTH_SHORT).show();
                   } else {
                       Toast.makeText(MainActivity.this, "error: " + uri + ", " + message, Toast.LENGTH_SHORT).show();
                   }
               }
         }).go(this);

4. 動態新增路由

        // 新增動態路由
        Router.handleRouteTable(new RouteTable() {
            @Override
            public void handle(Map<String, Class<?>> map) {
                map.put("dynamic", DynamicActivity.class);
            }
        });

5. 表過濾器與目標過濾器

        Router.handleInterceptorTable(new InterceptorTable() {
            @Override
            public void handle(Map<String, Class<? extends RouteInterceptor>> map) {
                Log.e(TAG, "handle: " + map.toString());
            }
        });

        Router.handleTargetInterceptors(new TargetInterceptors() {
            @Override
            public void handle(Map<Class<?>, String[]> map) {
                Log.e(TAG, "handle: " + map.toString());
            }
        });

6. 跳轉路由

Router.build("dynamic").go(this);

7. 註解註冊

// 註解註冊
@Route("result")
public class ForResultActivity extends AppCompatActivity {}

// 使用Bundle傳遞資料
Router.build("result").requestCode(0).with("extra", "Bundle From Module1Activity").go(this);

8. 自定義過濾器

// 1. 自定義過濾器
@Interceptor("SampleInterceptor")
public class SampleInterceptor implements RouteInterceptor {
    @Override
    public boolean intercept(Context context, RouteRequest routeRequest) {
        Toast.makeText(context, String.format("Intercepted: {uri: %s, interceptor: %s}",
                routeRequest.getUri().toString(), SampleInterceptor.class.getName()), Toast.LENGTH_SHORT).show();
        return true;
    }
}

// 2. 使用
@Route(value = "intercepted", interceptors = "SampleInterceptor")
public class InterceptedActivity extends AppCompatActivity {}

// 3. 新增過濾器
Router.build("test").addInterceptors("SampleInterceptor").go(this);

// 4. 跳過過濾器Router.build("intercepted").skipInterceptors("SampleInterceptor").go(this);

9. 協議過濾

// 1. AndroidManifest.xml檔案配置
        <activity android:name=".SchemeFilterActivity">
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />

                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />

                <data
                    android:host="filter"
                    android:scheme="router" />
            </intent-filter>
        </activity>

// 2. 協議過濾
public class SchemeFilterActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_scheme_filter);

        Uri uri = getIntent().getData();
        if (null != uri) {
            Toast.makeText(this, "uri: " + uri.toString(), Toast.LENGTH_SHORT).show();
            if (!uri.toString().startsWith("router://filter")) {
                Router.build(uri).go(this);
            }
            finish();
        }
    }
}

// 3. 使用
Router.build("router://filter").go(this);


相關文章