开发者

Android NDK facilities

开发者 https://www.devze.com 2023-02-07 05:00 出处:网络
I开发者_运维知识库 have a little experience with Android SDK, but don\'t know anything about NDK. And i want ask some questions about NDK to people who works with it.

I开发者_运维知识库 have a little experience with Android SDK, but don't know anything about NDK. And i want ask some questions about NDK to people who works with it.

Android dalvik VM have memory restrictions, such as one process cannot have heap size more than 16/24/32 Mb. But in my application i want use a little more memory. Can i create with NDK object that more than max dalvik heap size?

I wanna work with bitmap images in NDK. Does NDK have any libraries for it?

Sorry for my english


The Android NDK allows writing code not subject to the memory limits of the Dalvik VM heap limits, so you can allocate more memory than from within Dalvik. The device you are using may not support large allocations however e.g. take care to not exceed whatever limits the hardware and the OS enforce.

As for NDK libraries, the C++ STL and a subset of the C std libraries and some subset of the Posix APIs are provided, plus a few Android specific APIs. See here for an overview, and the documentation with the NDK for details.

0

精彩评论

暂无评论...
验证码 换一张
取 消