Are there basic GUI functions in SL4A? I'd like to run a python program on Android and would need a listbox and simple dialogs (display info and get input).

There seem to be simple dialogs, but I haven't found a listbox. If there isn't a listbox, I should be able to create one if there's the ability to write text and highlight rectangles to specified parts of the screen and react to the user touching the screen or typing (including knowing where the user touched or where the cursor is).

link|improve this question

78% accept rate
feedback

1 Answer

Essentially there are three things you can do:
If you just want simple Android lists and inputs, such as getting a user input (eg. username, password) or showing a list of option to choose from, then there are some tutorials here: http://code.google.com/p/android-scripting/wiki/UiExamples
If you want to show information (ie. not have the user select it) you could try showing HTML in a WebView and then respond via events: http://code.google.com/p/android-scripting/wiki/UsingWebView
You can have limited functionality via events by using droid.eventPost(eventName,eventData); in your JavaScript and then droid.eventWaitFor(eventName).result in your Python. You can then operate with the received data.
Or if you're feeling brave, in the latest unofficial release there is support for full Android layouts (ones made in xml, like those found in a full-blown Android app), and you can find the guide for that here: http://code.google.com/p/android-scripting/wiki/FullScreenUI

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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