我正在尝试自定义我的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
}
有什么想法吗?