vote up 24 vote down star
11

I like the Android platform. Actually, with some friends, we even participate to the ADC with the Spoxt project.

But Java is not my favourite language at all. We are working on a S60 version and this platform has a nice Python API. Of course there is nothing official about Python on Android, but since Jython exists, does anybody know a way to let the snake and the robot work together ?

flag

77% accept rate
Let's test Joel's theory about the possibility of updates for well-google-ranked SO posts. See below or this: google-opensource.blogspot.com/2009/06/… – bvmou Jun 10 at 5:14
How is that post well ranked ? It's 4 lines long and there is like 3 answers ! I guess Pytho on Android has a huge sex appeal... – e-satis Jun 10 at 8:17
You mean not everybody is interested in python on android? – bvmou Jun 10 at 9:02
I mean the contrary. Given the little content of this post, if it's well ranked, it must be a huge expectation. I strongly hope the best for this project, I'm myself more a pythonista than a Java guy and coding Android with this language would sky rock the prototyping phase. – e-satis Jun 10 at 12:51
I was kidding too. I meant that you should update the question, since some answers have been obsoleted by google's announcement. – bvmou Jun 11 at 6:53
show 1 more comment

6 Answers

vote up 13 vote down check

There is also the new ASE project, it looks awesome, and has some integration with native Android components. Android Scripting Environment

link|flag
vote up 5 vote down

YES!

An example via Matt Cutts -- "here’s a barcode scanner written in six lines of Python code:

import android
droid = android.Android()
code = droid.scanBarcode()
isbn = int(code['result']['SCAN_RESULT'])
url = “http://books.google.com?q=%d” % isbn
droid.startActivity(’android.intent.action.VIEW’, url)

"

link|flag
the curly quotes fsck with the code parsing – lfaraone Dec 16 at 0:59
vote up 2 vote down

I just posted some directions for cross compiling Python 2.4.5 for Android. It takes some patching, and not all modules are supported, but the basics are there.

link|flag
vote up 0 vote down

As a python lover and Android programmer, I am sad to say this is not really a good way to go. There's two problems.

One problem is that there is a lot more than just a programming language to the Android development tools. A lot of the Android graphics involve XML files to configure the display, similar to HTML. The built-in java objects are really integrated with this XML layout, and it's a lot easier than writing your own code to go from logic to bitmap.

The other problem is that the G1 (and probably other android devices for the near future) are really not that fast. 200 Mhz processors, and RAM is very limited. Even in Java you have to do a decent amount of rewriting-to-avoid-more-object-creation if you want to make your app perfectly smooth. Python is going to be too slow for a while still on mobile devices.

link|flag
There is not a single java word on an Android phone, it's compiled to byte code during the packaging process. Speed is not the issue : Google could provide tools producing the right byte code from a python code (like for Jython). BTW, Dalvik is not the Java VM so this is not about Java VS Python. – e-satis Nov 2 '08 at 18:20
vote up 7 vote down

You can use Jythonroid to do that. Note that the project is still in the beginning and for now you can access the shell from the screen.

link|flag
Sorry guy, the right answer has switched :-) – e-satis Jun 11 at 12:20
vote up 2 vote down

Not at the moment and you would be lucky to get Jython to work soon. If you're planning to start your development now you would be better of with just sticking to Java for now on.

link|flag

Your Answer

Get an OpenID
or

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