我在我的Kivy应用程序中复制了this code to use android native WebView。完美的工作:)
现在,我想将我的JavaScript与我的Kivy应用程序绑定。 我通读了this guide:
...
/** Show a toast from the web page */
@JavascriptInterface
public void showToast(String toast) {
...
如何创建具有@JavascriptInterface
注释的PyJnius类?
谢谢!