Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 Android 事件中创建,将数据发送到 WebView 中的 Havascript EventListener?
例如: 在后台,我开始线程搜索服务器上的更新。找到更新后,我发送事件以更新用户页面上的数据。而且我不想重新加载视图。
目前我发现的唯一方法是使用 JavaScript 注入:
mWebView.loadUrl("javascript:helloWorld(\"hi\");"); //or postUrl if using HTTP POST
这将导致在helloWorld网页的 JavaScript 中定义的函数以参数 value 被调用hi。
helloWorld
hi