如何在启动或重启android-mobile-phone时自动运行Python?

时间:2014-06-05 17:26:09

标签: android python python-2.7 python-3.x console

我有一个python脚本,它读取数据库并发送每条记录的短信(droid.smsSend(number,text)),但是我手动搜索脚本并执行它。

我想在每次启动或重启时自动启动脚本,在Android手机中设置一个选项。

1 个答案:

答案 0 :(得分:0)

您可以通过创建应用程序,添加权限RECEIVE_BOOT_COMPLETED,然后为该意图创建接收器来实现,例如:

    <receiver android:name="com.example.BootBroadcastReceiver" >
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
        </intent-filter>
    </receiver>

最后编写你的com.example.BootBroadcastReceiver类来启动脚本。