如何在Eclipse中创建JNI android项目

时间:2013-01-21 08:43:33

标签: android java-native-interface

我想在eclipse juno中创建一个基于JNI的Android项目。

如何使用Java和C ++在android中创建一个简单的“Hello World”项目。是否有任何教程可以帮助我使用JNI上述应用程序。

通过运行应用程序,它会显示以下错误

enter image description here

1 个答案:

答案 0 :(得分:5)

http://mindtherobot.com/blog/452/android-beginners-ndk-setup-step-by-step/

这是一个从NDK开始的好教程。

Ok这是代码Activity -

package com.example.ndk;

import android.app.Activity;
import android.app.AlertDialog;
import android.os.Bundle;

public class MainActivity extends Activity {

    static {
        System.loadLibrary("NDK");
    }

    // declare the native code function - must match ndkfoo.c
    private native String invokeNativeFunction();

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // this is where we call the native code
        String hello = invokeNativeFunction();

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

}

NDK.cpp

#include <string.h>
#include <jni.h>


jstring Java_com_example_ndk_MainActivity_invokeNativeFunction(JNIEnv* env, jobject javaThis) {

    return (*env)->NewStringUTF(env, "Hello from native code!");

}

Android.mk

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

# Here we give our module name and source file(s)
LOCAL_MODULE    := NDK
LOCAL_SRC_FILES := NDK.c

include $(BUILD_SHARED_LIBRARY)

将Android.mk和NDK.cpp放在jni文件夹中 现在使用cygwin构建库(如果您正在开发窗口),与示例中提到的相同。并运行它。