Aaron Meurer
> --
> You received this message because you are subscribed to the Google Groups
> "sympy" group.
> To post to this group, send email to sy...@googlegroups.com.
> To unsubscribe from this group, send email to
> sympy+un...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/sympy?hl=en.
Aaron Meurer
On Sun, Mar 18, 2012 at 10:40 PM, Abhinandan Ramprasath
Hi,
I repeat part of my email from 12/02/2012 :
- Android OS has a good Python (in Scripting Layer For Android - SL4A)
implementation, so it is indeed possible to create a SymPy GUI using
Python on Android. We currently have 3 options of GUI programming in
Python SL4A :
* UiFacade, but its restricted to dialog windows, not full screen :
http://code.google.com/p/android-scripting/wiki/ApiReference
* webview (Python + HTML/CSS + JavaScript), allowing full screen GUI :
http://code.google.com/p/android-scripting/wiki/UsingWebView
My Python webview template (with commented source-code) :
http://www.robertocolistete.net/Python/Android/
More complex software, SMSSender, using Python SL4A & webview :
http://android-scripting.blogspot.com/2010/11/sms-merger-reviewed-with.html
* FullScreenUI experimental, it needs sl4a_r5x (beta), but it is not
finished :
http://code.google.com/p/android-scripting/wiki/FullScreenUI
And SymPy works very easy with Python SL4A, so a SymPy UI for
Android can be written Python + HTML/CSS + JavaScript.
But is also possible to create a Dalvik software (for Android), but
the problem would be to implement the Java communication with Python/SymPy.
Regards, Roberto