What Programming Language is Google's Nexus One Using? [closed]

Is it just Java?


Asked by: Owen691 | Posted: 25-01-2022






Answer 1

The Android SDK is Java-based.

I am sure there is some ARM-assembly, C and C++ in the mix too for the low level stuff.

Answered by: Catherine968 | Posted: 26-02-2022



Answer 2

Yes, you program in Java, but you can also program in native C with the Native Development Kit.

Answered by: Kimberly172 | Posted: 26-02-2022



Answer 3

Remember though, that even though you write Android apps in Java, the code is not compiled to normal Java bytecode. It is instead compiled to Dalvik vm code. This means that you can't use common third party JAR files that are Java bytecode class files.

Answered by: Aida857 | Posted: 26-02-2022



Answer 4

Android 2.1 SDK - Java

Answered by: Cadie819 | Posted: 26-02-2022



Answer 5

Nexus One uses Android 2.1, and to develop programs for Android, we can use the Java programming language. For advanced usage or more performance, Google provides Native Development Kit, where we can use C to write programs.

Answered by: Alberta312 | Posted: 26-02-2022



Similar questions

java - Android App from Go programming language

I am hearing buzzes about Go programming language from google. Wikipedia describes it like this: "Go aims to provide the efficiency of a statically-typed compiled language with the ease of programming of a dynamic language". I was thinking that since it is a language from the maker of android, they should have some support for creating android Apps. Is there any tool to create android App from Go? Is Go worthy language to ...


What programming language works well with OpenGL ES on iOS and Android?

What programming language works well with OpenGL ES on iOS and Android? I am specifically looking to get graphics experience with OpenGL ES 2. My experience has been with web development in Javascript and iOS development using C# and Unity3D. (Unity3D is great but far removed from dealing directly with OpenGL ES.)


which programming language I should use between java and ruby for creating Android and iPhone app

Closed. This question does not meet Stack Overflow guid...


android - Programming language for Sony Smart Watch

What Language can I use to create apps for the sony smart watch, I was looking at their SDK but I couldn't find a language anywhere. Could it be C/C++ or Java? If this type of question is not allowed on stackoverflow please tell me and I'll remove it


does android L need another programming language?

Closed. This question needs to be more focused. It ...


android - Control a webpage trough python or any other programming language

I want to build a videomapping which you control with an Android device. Say, I have a webpage that is totally black, and then on the Android device, I have a WebView app which has a few buttons. Every time I click on one of those buttons, that should trigger an event in the webpage, like showing some shapes or switch colors. I know how to write an Android app with python sl4a alongside with HTML, CSS and J...


In what programming language are the android obb files coded in?

In what programming language are the android obb files coded in? Are they coded in native languages like C and C++ or in Java the same way apk files are coded?


android - What programming language should I use for my dream app

Closed. This question is opinion-based. It is not c...


android - I can’t send the image using the post request and from the Volley library in the Kotlin programming language

I’m developing a mobile application that sends photos to the server using a post request with a key. Do not get to send this very request. I would be grateful for any help! The error "Com.android.volley.TimeoutError" is displayed in the application error snapshot:


android - Is it possible to replace app in google play console with different programming language used?

Closed. This question needs details or clarity. It ...


Android: How to edit specific record from database in Android Programming (Using Ruby on rails)

At first,I have a database created by using Ruby on rails. I just already implement insert function(HTTPPost) in my Android Application and it's work. But I don't know how to retrieve specific record from my databases and insert it back to specific record in Android (Like edit function in RoR) This is my insert code : private void insertComment() { DefaultHttpClient client = new DefaultHttpClient();...


What is the initial step to start with android? How does java programming help?

Closed. This question is opinion-based. It is not c...


Android Programming Tutorials: #6

I started working through the tutorials in Mark L Murphy's book "Android Programming Tutorials". In Tutorial #6, they are starting to work with tabs. I copied the code: TabHost.TabSpec spec=getTabHost().newTabSpec("tag1"); spec.setContent(R.id.restaurants); spec.setIndicator("List", getResources() .getDrawable(R.drawable.list)); getTabHost().addTab(spec); spec=getTabHost().newTabSp...


Android programming - screen resolution

I'm new to Android programming. I've seen different phones with different screen resolutions that run on Android. How can I create an application that works on all android devices with out any distortion in my application views.....


email - Android Programming - Send mail

I'm using the following piece of code in Android to send a mail: Intent emailIntent = new Intent(Intent.ACTION_SEND); emailIntent.setType("text/html"); emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,sendTo ); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "test" ); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "msg" ); When code is compiled and run, its...


game programming iphone osx android 1.6 shared codebase

im planning to develop a game for iphone and android. what programming language can i use to create a shared codebase between the two platform. i understand that there are some parts which are device specific.


How to approach socket programming between C# -> Java (Android)

I've recently knocked up a server/client app for Windows & Android that allows one to send a file from Windows to an android phone over a socket connection. It works great for a single file but trying to send multiple files over in a single stream is causing me problems. I've also realised that aside from the binary data, I will need to send messages over the socket to indicate error states and other applicati...


android - Some questions about using NDK for faster programming results

I have the following questions, please if you know the answers share it with me. How can I transform my working Java code to NDK? (it's an algoritm not activity) I am able to access the database from NDK? Will a backtracking algorithm with 10 millions of iterations run faster if was written with NDK?


How much Java should I have learnt before trying Android programming?

Closed. This question is opinion-based. It is not c...


How to start Android Kernel programming?

I have 6 months experience with Android, developing simple UI-based applications. Now I want to write applications targeting the Android core Kernel. For example, I want to develop a framework which is not present in Android. To achieve that, we have to write the code for the Kernel. I don't know where and how to start Android Kernel programming. If anybody knows the way to start it please help me.






Still can't find your answer? Check out these communities...



Android Google Support | Android Community | Android Community (Facebook) | Dev.io Android



top