从脚本中终止 android ASE shell
Posted
技术标签:
【中文标题】从脚本中终止 android ASE shell【英文标题】:Terminating android ASE shell from within the script 【发布时间】:2011-03-08 16:59:25 【问题描述】:我正在使用带有 python (ASE) 的 android 脚本环境,并且我想在脚本终止时终止执行脚本的 shell。 有什么好办法吗?
我尝试在最后一行执行: os.system('kill %d' % os.getppid())
但无济于事。
【问题讨论】:
【参考方案1】:你应该使用android.exit()
。
【讨论】:
【参考方案2】:我猜上面的答案应该是android.Android().exit()
【讨论】:
以上是关于从脚本中终止 android ASE shell的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Android 上的 ASE 中使用 Python 获取设备特定的 UID?
是否可以将使用 ASE 创建的 Android 脚本用作 Android 的典型应用程序(例如用 Java 编写)?