- Android Native Development Kit Cookbook
- Feipeng Liu
- 198字
- 2021-07-27 18:07:22
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text are shown as follows: "Windows NDK comes with a new ndk-build.cmd
build script."
A block of code is set as follows:
#include <string.h> #include <jni.h> jstring Java_cookbook_chapter1_HelloNDKActivity_naGetHelloNDKStr(JNIEnv* pEnv, jobject pObj) { return (*pEnv)->NewStringUTF(pEnv, "Hello NDK!"); }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := framegrabber
LOCAL_SRC_FILES := framegrabber.c
#LOCAL_CFLAGS := -DANDROID_BUILD
LOCAL_LDLIBS := -llog -ljnigraphics -lz
LOCAL_STATIC_LIBRARIES := libavformat_static libavcodec_static libswscale_static libavutil_static
include $(BUILD_SHARED_LIBRARY)
$(call import-module,ffmpeg-1.0.1/android/armv5te)
Any command-line input or output is written as follows:
$sudo update-java-alternatives -s <java name>
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Go to Control Panel | System and Security | System | Advanced system settings."
推薦閱讀
- Python數(shù)據(jù)分析入門(mén)與實(shí)戰(zhàn)
- Responsive Web Design by Example
- Mastering Android Development with Kotlin
- 深入理解Android:Wi-Fi、NFC和GPS卷
- 青少年信息學(xué)競(jìng)賽
- HTML5 APP開(kāi)發(fā)從入門(mén)到精通(微課精編版)
- C語(yǔ)言從入門(mén)到精通
- 匯編語(yǔ)言編程基礎(chǔ):基于LoongArch
- Robot Framework Test Automation
- Spring Data JPA從入門(mén)到精通
- Node.js 6.x Blueprints
- Java程序設(shè)計(jì)入門(mén)(第2版)
- Flask開(kāi)發(fā)Web搜索引擎入門(mén)與實(shí)戰(zhàn)
- Hadoop Blueprints
- Web程序設(shè)計(jì)與架構(gòu)