[Android Knowledge Notes] ARouter / Navigation / EventBus

insert image description here

Note: This article is mainly based on the routing study notes of the Android View system in the past, and does not include the latest Jetpack Compose routing system. If you need to know about the navigation routing in Jetpack Compose, please refer to the navigation routing in Jetpack Compose article .

traditional routing

// 显性意图
startActivity(new Intent(this, HomeActivity.class)); 

// 隐性意图
startAct

Guess you like

Origin blog.csdn.net/lyabc123456/article/details/131244645