2

我在 Android 上安装了 QPython 应用程序并执行了一个脚本名称helloworld.py。它使用 androidhelper 的方法maketoast来显示带有 Android api 的消息。

我尝试在另一个文件上编写完全相同的脚本,但它给了我以下错误:

com.googlecode.android_scripting.rpc.RpcError:未知的 RPC。

然后我尝试修改helloworld.py,现在它给了我上述错误。

我在整个互联网上搜索了这个错误,但没有解决方案。

顺便说一句,我使用的是三星 Galaxy Tab 3 LITE T110N。

我已经尝试过使用android模块,但它不存在。sl4a也不存在。

我使用python 2.7。

4

1 回答 1

1
import androidhelper
droid=androidhelper.Android()
droid.makeToast("Hello, sl4a!")
#not maketoast
#it's makeToast!
#read this:
#http://www.mithril.com.au/android/doc/index.html
#when you call sl4a,you have to tell sl4a what to do, if sl4a can't recognize it,
#sl4a throws an Unknown RPC error
#Thanks
于 2015-12-14T15:29:40.850 回答