使用SL4A发送短信

时间:2014-05-07 15:41:31

标签: android python sms sl4a

我试图每隔10秒发送一个文本,但我不知道是什么问题。我为noob问题道歉,但我是一个新手,我真的可以使用一些帮助。这是代码:

import android, time
from time import localtime
droid = android.Android()
now = str(datetime.datetime.now())
while True:
ans = droid.dialogGetInput("Phone Number","","").result
tosend='Wake up!'
droid.smsSend( ans ,tosend )
time.sleep(10)
droid.dialogDismiss()
time.sleep(600)

1 个答案:

答案 0 :(得分:-1)

试试这个:

droid = android.Android()
ans = droid.dialogGetInput("Phone Number","","").result
tosend='Wake up!'
while True:
  droid.smsSend(ans,tosend)
  time.sleep(10)