我想從另一個SL4A腳本中啓動背景SL4A腳本(在遠程設備上)。我可以運行像這樣從終端發起的腳本: $ am start -a \
com.googlecode.android_scripting.action.LAUNCH_BACKGROUND_SCRIPT -n \
com.googlecode.android_scripting/.activity.ScriptingLayerServi
您好,我在使用Python SL4A在Android中運行線程方面存在問題。我想運行在同一時間兩個線程,但似乎有問題 from threading import *
import time
def func1():
while True:
print("func1")
def func2():
while True:
print("func2")