I'm an iOS developer and I'm considering getting into Android development.
In Objective-C, I'm used to being able to optimize and tune specific hotspots (e.g. image processing) using inline
directives and low-level code.
How do I do the same in Android? Is the answer Renderscript? Is Renderscript compatible with all Android devices?
At a minimum, can I specify that certain methods should be inlined to save on procedure calls in extremely, extremely tight loops?