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.
我想在某些情况下运行特定的 javascript。我不想需要插件,因为插件依赖于打开应用程序。
我的想法是能够在应用程序关闭时打开通知(我有这个工作),并让通知在关闭时打开应用程序,或者如果应用程序打开则将其置于前面。
所以上面已经是它的工作方式......
话虽如此,但是,我希望能够让通知将一些 javascript 传递给 web 视图。我想根据点击的通知打开链接。
使用loadUrl方法将 javascript 传递到页面,如下所示:
loadUrl
webview.loadUrl("javascript:window.onload = function(){alert(\"haha\");};");