【转】Create Hello-JNI with Android Studio
【轉】Create Hello-JNI with Android Studio
From:https://codelabs.developers.google.com/codelabs/android-studio-jni/index.html?index=..%2F..%2Findex#4
訪問需要FQ。
沒有翻譯成中文是因為圖片很詳細,看不懂英文,根據圖片一步一步也能完成。另外開發人員應該具備閱讀英文技術博客的能力。
1.?Overview
In this codelab, you'll learn how to use Android Studio to start Android NDK project development.
?
2.?Create Java Sample App
a) Linux: Run?studio.sh?from your installed location
b) OSX: Find studio installation in Application folder, double click to start
If this is the first time you run this version of Android Studio on this system, Android Studio will prompt to import from previous settings, just select "I do not have a previous version of Studio or I do not want to import my settings", "Welcome to Android Studio" will be displayed.?
This creates an Android "Hello World" Java app; your Android Studio looks like:
a) On Mac OS, menu "Android Studio" > "Preferences".
b) On Linux, menu "File" > "Settings".
c) Then "Build, Execution, Deployment" > "Build Tools" > "Gradle".
d) Select "Use Default Gradle wrapper (recommended)", click "OK".
a) Menu "Tools" > "Android" > "SDK Manager"
b) Select tab "SDK Tools"
c) Check "Android NDK"[ or "NDK"] if it is not checked
3.?Add JNI Build Capability to HelloAndroidJni Project
Android Studio supports native development via experimental plugin developed by Google, let's add it into our project.
with your latest version[it does not have to be 0.7.2]:
classpath 'com.android.tools.build:gradle-experimental:0.7.2'Select Android Studio "Project" pane, "Gradle Scripts" > "gradle-wrapper.properties (Gradle Version)" and change:
distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip
to:
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
Select Android Studio "Project" pane > "Gradle Scripts" > "build.gradle (Module: app)" and replace:
with:
apply plugin: 'com.android.model.application' model { android { compileSdkVersion 23 buildToolsVersion "23.0.3" defaultConfig { applicationId "com.google.sample.helloandroidjni" minSdkVersion.apiLevel 22 targetSdkVersion.apiLevel 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles.add(file('proguard-android.txt')) } } } } // others below this line: no changeNOTE: the version numbers may be different on your system, and you do not need to change the version number -- just use them as is. Only changing the highlighted part would be fine!
4.?Add JNI Code Into Project
Select the menu "File" > "Project Structure" > "SDK Location", "Android NDK Location" if it is not set yet, then click "...", and browse to your NDK location and click "OK" (you may also choose "download").
Select Android Studio "Project" pane > "Gradle Scripts" > "build.gradle (Module:app)", add the following inside the "model" block, after "buildTypes" block.
Select Android Studio "Project" pane > "app" > "java" > "com.google.sample.helloandroidjni" > "MainActivity", and add JNI function getMsgFromJni() and System.loadLibrary() to the end of class MainActivity.
Note:
- make sure library name is the same as moduleName inside build.gradle
- The "Build" step is just to build, do not load the built apk yet; if you load it, it will crash since there is no native implementation for getMsgFromJni() yet
In MainActivity.java file, "getMsgFromJni()" is highlighed with red because Android Studio could not find its implementation; let's get it implemented:
- Select function "getMsgFromJni()".
- Wait for context aware menu prompt ?to appear.
- Click on?to bring up the popup?
? ? ? ? ?
- Select "Create Function Java_com_google_example_helloandroidjni_MainActivity_getMsgFromJni".
- Android Studio creates a prototype function for getMsgFromJNI() in hello-android-jni.c file under the "jni" folder. Both got created at once!
- Replace "returnValue" in the above code with our own message:
- Add an ID to the existing TextView.
Open "Android Studio" pane, "res" > "layout" > "content_main.xml"[if you have chosen template "Empty Activity" in step "Create Java Sample App", you file might be "activity_main.xml" instead], select "design" view, and click or "Hello World", inside "Properties" pane, put "@+id/jni_msgView" into?"ID"?field:
[The other way is to directly add into "text" view, and put id in with?android:id="@+id/jni_msgView".] - Display our jni message in the TextView.
In MainActivity::onCreate() function, append following code to the end of the function:
- Select "NewStringUTF" inside hello-android-jni.c, "right click" to bring up the pop-up menu.
- Select "Go To", and "Implementation(s)".
- You will see the function implementation of "NewStringUTF".
- Select other code to explore the native code browsing feature.
5.?Debugging JNI Code
[For Android Studio version earlier than 2.2, select?. Android Studio auto-generates this native debug configuration when it detects JNI code. In this config, debug configurations are enabled by default. If?is not visible, close this project and reopen it with Android Studio, it will be there; Android Studio version 2.2 integrated the debug functionality into app configure].
[Note: if you are using Android Studio RC 1.5 or better, you can set a breakpoint on getMsgFromJni() in Java code and "trace into" JNI code]
?項目源碼?https://github.com/leon-HM/HelloAndroidJni
轉載于:https://www.cnblogs.com/leon-hm/p/6472537.html
總結
以上是生活随笔為你收集整理的【转】Create Hello-JNI with Android Studio的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 登录功能实现
- 下一篇: Android Studio中关于9-p