2

我发现了一些类似的问题,但他们的回答对我没有帮助。我浏览了本教程http://mindtherobot.com/blog/452/android-beginners-ndk-setup-step-by-step/并遇到了一些问题。

我的 Android.mk 文件:

     LOCAL_PATH := $(call my-dir)
 MY_PATH := $(LOCAL_PATH)
 include $(call all-subdir-makefiles)

 include $(CLEAR_VARS)

 LOCAL_PATH := $(MY_PATH)

 LOCAL_LDLIBS := -llog -ldl
 LOCAL_MODULE    := ndkfoo
 LOCAL_SRC_FILES := ndkfoo.c

 include $(BUILD_SHARED_LIBRARY)

还有我的 c 级 ndkfoo.c :

    #include <jni.h>  
#include <string.h>  
#include <android/log.h>  
#include <string.h>
#include <jni.h>
jstring Java_com_example_ocrrecognise_ndkfoo_MainActivity_invokeNativeFunction(JNIEnv* env, jobject javaThis) {
  return (*env)->NewStringUTF(env, "Hello from native code!");
}

和主要活动:

public class MainActivity extends Activity {
static {  
    System.loadLibrary("ndkfoo");  
} 
private native String invokeNativeFunction();  
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    final Button button = (Button) findViewById(R.id.button_id);
    button.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) 
        {
              try{
                  String hello = invokeNativeFunction();
                  Log.i("string func", hello);
              }catch (UnsatisfiedLinkError e)
              {
                  e.printStackTrace();
              }

              //new AlertDialog.Builder(MainActivity.this).setMessage(hello).show();
        }
    });

}

但我有

 No implementation found for native Lcom/example/ocrrecognise/MainActivity;.invokeNativeFunction ()Ljava/lang/String;
 java.lang.UnsatisfiedLinkError: invokeNativeFunction
    at com.example.ocrrecognise.MainActivity.invokeNativeFunction(Native Method)
    at com.example.ocrrecognise.MainActivity.access$0(MainActivity.java:14)
    at com.example.ocrrecognise.MainActivity$1.onClick(MainActivity.java:24)
    at android.view.View.performClick(View.java:2485)
    at android.view.View$PerformClick.run(View.java:9080)
    at android.os.Handler.handleCallback(Handler.java:587)
    at android.os.Handler.dispatchMessage(Handler.java:92)
    at android.os.Looper.loop(Looper.java:123)
    at android.app.ActivityThread.main(ActivityThread.java:3687)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:507)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:867)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:625)

我在ndkfoo.c我输入了正确的包名。请帮忙。

4

2 回答 2

2

你在什么包里Activity?请注意,这应该是在你是com.example.ocrrecognise.ndkfoo. 如何编译你的 c 代码的?

你把编译.so文件/libs/armeabi放在你的项目下了吗?

于 2012-10-20T15:45:26.100 回答
1

从错误

 No implementation found for native Lcom/example/ocrrecognise/MainActivity;.invokeNativeFunction

您的主要活动似乎在 com.example.ocrrecognise 包中。如果将它放在包 com_example_ocrrecognise_ndkfoo 中,它应该可以工作,因为这是您在本机代码中声明函数时使用的前缀。

于 2012-10-20T15:52:52.623 回答