I tried creating a few dialogs for a program.. thing is when executed. nothing happens, so I tried the basic hello world getInput code below:
import android
droid = android.Android()
name = droid.dialogCreateInput("Hello!", "What's your Name?")
print name
droid.makeToast("Hello, %s" % name.result)
lf thing is when I view the name Which is essentially the result of the dialogCreateInput nothing happens, it's as if the dialog isn't called and a dialogShow would not work using the name variable. if I use the droid variable as below:
droid.dialogShow()
with the code above. it'll say that there is no dialog to show. so i do not know what I can do to call any dialogs for use in programming. some help would be appreciated