2012-04-14 65 views
1

我想映射在android中的函數調用流 - 當應用程序調用API時控制流如何。我的第一個案例研究是位置服務。在Eclipse中調試Android源代碼 - 位置服務

在調試時,控制從未達到LocalationManagerService.java

  • 我LocationDemo應用調用(的LocationManager)requestLocationUpdates
  • 它可以追溯到LocationManager.java後者又調用在ILocationManager定義requestLocationUpdates(AIDL文件)
  • ILocationManager在LocationManagerService.java中實現。
    但是Eclipse抱怨說ILocationManager$Stub$Proxy.requestLocationUpdates(...) source not found

是否有可能鏈接的LocationManager < - > ILocationManager < - > LocationManagerService?
如果不能如何調試LocationManagerService中的代碼?

回答