Android OS中哪个类处理意图调度?

时间:2014-02-19 19:50:44

标签: android android-intent operating-system dispatcher

我正在尝试自定义我的Android操作系统,以暂时关闭由各种意图触发的一些功能。它完全安全,因为它只发生在我的设备上。但是我很难找到意图调度员所在的位置。我看过ActivityManager,ActivityManagerService和WindowManager没有运气。理想情况下,我希望找到一个像这样的地方:

public void dispatchIntents(Intent i) {

    //my code here
    if (i == Intent.xxxx) {
        //my customization here
    }

    .... // Android OS's own intent dispatching
}

有什么想法吗?

0 个答案:

没有答案