I wrote some simple apps in Android using Java.
But later I found this:

It provides headers and libraries that allow you to build activities, handle user input, use hardware sensors, access application resources, and more, when programming in C or C++. (Source)

How is it related to this:

Android applications are written in the Java programming language. (Source)

Are all three languages possible?
Sorry for the dumb question.

link|improve this question

feedback

6 Answers

up vote 13 down vote accepted

The article you link to has good information. It also links to http://developer.android.com/sdk/ndk/overview.html which says:

The NDK will not benefit most applications. As a developer, you need to balance its benefits against its drawbacks; notably, using native code does not result in an automatic performance increase, but always increases application complexity. In general, you should only use native code if it is essential to your application, not just because you prefer to program in C/C++.

Typical good candidates for the NDK are self-contained, CPU-intensive operations that don't allocate much memory, such as signal processing, physics simulation, and so on. Simply re-coding a method to run in C usually does not result in a large performance increase. When examining whether or not you should develop in native code, think about your requirements and see if the Android framework APIs provide the functionality that you need. The NDK can, however, can be an effective way to reuse a large corpus of existing C/C++ code.

link|improve this answer
feedback

Java always allows you to call "native code" components. However, you want to avoid them if possible because they can introduce subtle bugs and platform dependencies into your code.

I don't believe you can code a whole application for Android in C/C++ however -- you must have a Java wrapper at the very least.

link|improve this answer
feedback

This is good question, AFAIK, c or c++ comes into picture when you really want to program something core dalvik feature than using Android API as specified you question, something like sensor related features or hardware.

If you want build app using API, it will be mostly in Java/XML.

link|improve this answer
Dalvik is mostly written in c++, but working on the JVM does not really equal writing applications for android. The c++ api is much more limited than the java one - I'm not even sure there exists a native API for the sensors.. there obviously is one for Java though. – Voo Jan 17 at 21:07
feedback

Android is Linux underneath so you can run any language on it. I have run Perl scripts on an Android phone for fun. From a pratical, app development point of view Java would the typical route to take.

link|improve this answer
feedback

Java is better overall for android but you can see Lua too ;)

link|improve this answer
feedback

If you want, you can write a full Android application using C/C++, however it will not necessarily be compatibile with all platforms. The following is from a Google blog:

"[When using the NDK] Your application will be more complicated, have reduced compatibility, have no access to framework APIs, and be harder to debug."

So with SDK apps, despite a small performance hit due to your app code running through an interpreter (Dalvik), you have the advantage of being cross platform which is not a guarantee with NDK apps.

Of course, this is not the case with iOS where the source code is typically C based (obj C), and this is only possible because Apple has full control over their hardware... thus no need for a JVM.

link|improve this answer
Could you elaborate on developing using the ndk then? Because if every device has it's own ndk, you would need to compile your software for every device seperately which seems madness to me.. or does it compile on installation? – Will Kru Jan 17 at 22:03
There's lots wrong with this answer. 1) The Android NDK is not phone specific. The API is generic across all Android. 2) It's compiled to either ARM5 or ARM7 binary objects and should work with most phones (aside from screen-size / features issues). 3) There are no phone-specific APIs so you develop once and release 2 binary copies (arm5 and arm7) – gravitron Jan 17 at 22:33
as well you can use the third party libSDL port with android NDK which allows compiling cross-platform code like existing SDL games. – gravitron Jan 17 at 22:34
@gravitron... my "answer" here (which obviously has some mistakes) was based on my understanding of the NDK. My current company wanted to get the NDK for the Xoom because we needed to do native development for efficiency. Yet it wasn't available yet from MOT, therefore I misunderstood. Thanks for the feedback Editing original answer. – paiego Jan 17 at 23:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.