当前位置: 代码迷 >> Android >> 使用SourceInsight查看android中的native步骤
  详细解决方案

使用SourceInsight查看android中的native步骤

热度:70   发布时间:2016-04-28 05:31:12.0
使用SourceInsight查看android中的native方法

SourceInsight真的是查看源代码的神器。只要知道了文件名,就可以快速定位到文件。最近在研究Android的touch系统,发现MotionEvent的getX()方法调用的是nativeGexAxis(),于是想看看该本地代码是如何实现的,但我不知道nativeGexAxis的实现代码在什么位置。Android中的类调用本地代码是通过类名相似或Android.mk文件定义。MotionEvent所在的pack为android.view,将点号换成下划线,我们可以推测MotionEvent中的本地代码所在文件为android_view_MotionEvent.在SourceInsight右侧的ProjectWindow输入android_view_MotionEvent,如图中红色区域所示,立刻找到源文件。


  相关解决方案