1

我一直在尝试使用 Xamarin Studio 将一个简单的 hello world NDK 项目导入一个 monodroid 项目。

项目的 NDK 部分可以正常编译和构建,我可以调用本机方法,但是当我尝试使用JNIEnvSIGSEGV 访问应用程序崩溃时,请参阅下面的控制台输出和相关代码片段。

Very basic console logging
Starting method
Accessing env
Stacktrace:

  at <unknown> <0xffffffff>
  at (wrapper managed-to-native) BasicNDK.Activity1.LogNdk (string) <IL 0x00032, 0xffffffff>
  at BasicNDK.Activity1.<OnCreate>b__0 (object,System.EventArgs) [0x00023] in c:\Users\cbramley\Documents\Visual Studio 2012\Projects\AndroidApplication1\BasicNDK\MainActivity.cs:56
  at Android.Views.View/IOnClickListenerImplementor.OnClick (Android.Views.View) [0x0000c] in /Users/builder/data/lanes/monodroid-mlion-master/bf2b736d/source/monodroid/src/Mono.Android/platforms/android-10/src/generated/Android.Views.View.cs:643
  at Android.Views.View/IOnClickListenerInvoker.n_OnClick_Landroid_view_View_ (intptr,intptr,intptr) [0x00011] in /Users/builder/data/lanes/monodroid-mlion-master/bf2b736d/source/monodroid/src/Mono.Android/platforms/android-10/src/generated/Android.Views.View.cs:614
  at (wrapper dynamic-method) object.6ea2e501-d56c-455b-9c13-849da747461e (intptr,intptr,intptr) <IL 0x00017, 0x00043>
  at (wrapper native-to-managed) object.6ea2e501-d56c-455b-9c13-849da747461e (intptr,intptr,intptr) <IL 0x00023, 0xffffffff>

=================================================================
Got a SIGSEGV while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries 
used by your application.
=================================================================

monodroid 活动代码:

        // snipped rest of activity
        [DllImport ("ndksample")]
        static extern void LogNdk ( string w );

        [DllImport ("ndksample")]
        static extern void LogNdkDefaultMessage ();

        protected override void OnCreate ( Bundle bundle )
        {
            base.OnCreate ( bundle );
            SetContentView ( Resource.Layout.Main );

            Button button = FindViewById<Button> ( Resource.Id.myButton );            
            button.Click += delegate
            {
                // launch our NDK code                
                try
                {
                    LogNdkDefaultMessage();
                    LogNdk("Message to log");
                }
                catch (Exception e)
                {
                    Log.Warn("MainShort",e.ToString());
                }    
            };
        }

最后是 NDK 实现:

#include <jni.h>
#include <string.h>
#include <android/log.h>

#define DEBUG_TAG "NDK_AndroidNDK1SampleActivity"

void LogNdk(JNIEnv * env, jobject this, jstring logThis)
{
    __android_log_print(ANDROID_LOG_DEBUG, DEBUG_TAG, "Starting method");
    jboolean isCopy;
    __android_log_print(ANDROID_LOG_DEBUG, DEBUG_TAG, "Accessing env");
    const char * szLogThis = (*env)->GetStringUTFChars(env, logThis, &isCopy);
    __android_log_print(ANDROID_LOG_DEBUG, DEBUG_TAG, "NDK:LC: [%s]", szLogThis);
    (*env)->ReleaseStringUTFChars(env, logThis, szLogThis);
    __android_log_print(ANDROID_LOG_DEBUG, DEBUG_TAG, "Finished");
}

void LogNdkDefaultMessage(JNIEnv * env, jobject this)
{
   __android_log_print(ANDROID_LOG_DEBUG, DEBUG_TAG, "Very basic console logging");
}

我已经将问题追踪到这条线路上的崩溃,const char * szLogThis = (*env)->GetStringUTFChars(env, logThis, &isCopy);但我不明白是什么原因造成的,有人可以帮我解释一下吗?或者更好的是告诉我如何解决它:)

4

1 回答 1

0

我不是专家,但在我的 monodroid 项目中使用第三方 JNI 库有点挣扎。
这与我使用 BindingLibrary 类型的项目来生成我将在 Monodroid 应用程序上使用的 .jar c#-wrapper 不同。
当 BindingLibrary 项目生成它的代码时,您可以看到如果它必须将一个字符串传递给 JNI 代码,它会这样做:

IntPtr intPtr = JNIEnv.NewString ("string here");
...
callJNIMethodPassingString(new JValue (intPtr));

也许可能有用..或者可能根本没有:)

于 2013-04-17T02:34:09.833 回答