如何在Android工作室“进入”C功能?

时间:2014-12-11 14:47:49

标签: android android-ndk android-studio

使用标准的Hello-jni NDK示例,我试图在Android Studio中“逐步进入”C函数。但是,调试器拒绝任何进入stringFromJNI()函数的尝试,这是通过按F7功能键完成的。它只是一步而来。

    TextView  tv = new TextView(this);
    // how to step into stringFromJNI() function?
 => String s = stringFromJNI();
    tv.setText( s );
    setContentView(tv);

有人知道如何在Android Studio中进行跨语言调试吗?

THX!

1 个答案:

答案 0 :(得分:1)

您无法在Android Studio 1.0中进行本机调试。它没有实现。如果您正在使用Eclipse,那么Debug native code in Android Library会提供一些帮助,但尚未在Android Studio中完成。