1

プロジェクトで Android NDK を使用したいと考えています。私の質問は、Android NDK から hello-jni のデフォルトのサンプル プロジェクトを統合して実行する方法です。その上で段階的な解決策を提供してください...私はそれについて何も知りません...

4

4 に答える 4

5
1.    First Create Android Project 
2.    Then Create Folder  in the Project with name jni (Dont use other name)

3.       Create File With the Android.mk ( Rightclick on the jni folder ->New -> File -                                                                                 >Android.mk)
// Coding To Build Path and Access
LOCAL_PATH :=$(call my-dir)         // This is Common
include $(CLEAR_VARS)               // This is common`enter code here`
LOCAL_MODULE    := myCFile  // myCFile is ur own  Name of the module
                that will be    called in Activity)
LOCAL_SRC_FILES := my.c   // Our C File What should be given in C
                                                                             file creation

include $(BUILD_SHARED_LIBRARY)


4.    Create C File like above With ur own name with the extension .c (This file will be
                                                           used  in LOCAL_SRC_FILES )
                    C File Will Look Like this:
Note :
// Your Package name com.JniMyDemo Then Your Activity File and then the Function name for c file
So that I used jint(return value) 
(Java) its must
(com_JniDemo) is  Specified in Package name(com.JniDemo) we couldnt use . for package so 
we put underscore for c file )
(JniMyDemoActivity) Is my class

First two arguement is Important one others are our own variable for function //

Include two header file string.h,jni.h


#include "string.h"
#include "jni.h"

jint Java_com_JniMyDemo_JniMyDemoActivity_add(JNIEnv *env,jobject jobj,jint n1,jint n2)
{
jint a,b,c;
a=n1;
b=n2;
return (a+b);
}

5.  Then Call the The C File Like this 

// Activity Look like this 

public class JniMyDemoActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        TextView txt    =new TextView(this);
        txt.setText(" "+add(100,100));
        setContentView(txt);
    }

    private native int add(int i,int j,int k);
    static
    {
        System.loadLibrary("myCFile");
    }
}  

6.      Then Compile the C File by 
    Starting Terminal (cmd prompt) Type the Project Path like ( cd  Project Path) and Enter
    Then type the          ( Ndk Location/ndk-build) it will automatically compile & ur jni             folder
7.   If it success means Start the Actvity  it will show the Result of Addition
于 2011-08-30T11:44:29.467 に答える
4

これは、NDK 初心者向けの優れたチュートリアルです: Getting Started with the NDK

于 2011-07-08T12:54:51.590 に答える
1

物事を覚える難しい方法を学びましょう。developers.android.com からダウンロードした Andaroid NDK 内には、NDK をいつどのように使用する必要があるかを明確に示すさまざまなドキュメントを含む docs フォルダーがあります。特に、OVERVIEW.HTML を完全に確認してください。 http://developer.android.com/sdk/ndk/index.html

初めてNDKを使用したとき、私はこのようにしました。そして、私はこの方法だけを強くお勧めします..

ネイティブ コードとは何かについて混乱している場合 -> Android アプリケーションで使用する C または C++ またはアセンブリ コードです。これは Java 言語ではないため、ネイティブ コードと呼ばれています。

ではごきげんよう。

于 2012-04-18T09:03:12.553 に答える
1

ここには素晴らしいチュートリアルがあり、NDK を使用するために必要なすべてのこと、関数の作成方法、およびそれらの使用方法を説明しており、簡単に理解できます。http://marakana.com/s/introduction_to_ndk,1153/index.html、母国語ではなく英語でごめんなさい。

于 2012-07-08T20:18:54.290 に答える