JavaScript 无法在 Android Webview 中运行?
我正在尝试制作一个相对简单的 iOS 应用程序的 Android 版本,该应用程序使用 webview、一些按钮,然后依赖于对 CMS 的 javascript 调用。
但我陷入了开发的早期阶段:webview 无法使用 javascript 运行。我读过很多关于如何在 Android webview 中启用 JS 的文章,但到目前为止还没有运气。
下面是我的一些代码:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mWebView = (WebView) findViewById(R.id.webview);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.setWebChromeClient(new WebChromeClient());
mWebView.setWebViewClient(new HelloWebViewClient()
{
@Override
public void onPageFinished(WebView view, String url)
{
//Calling an init method that tells the website, we're ready
mWebView.loadUrl("javascript:m2Init()");
page1(mWebView);
}
});
mWebView.loadUrl("http://my_url/mobile/iphone//app.php");
}
private class HelloWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
}
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if ((keyCode == KeyEvent.KEYCODE_BACK) && mWebView.canGoBack()) {
mWebView.goBack();
return true;
}
return super.onKeyDown(keyCode, event);
}
public void page11(View view)
{
mWebView.loadUrl("javascript:m2LoadPage(1)");
}
我在这里做错了什么? 该 URL 在我的 iOS 应用程序和浏览器中运行良好。 但我的应用程序中没有!
请告诉我这是显而易见的事情......
I'm trying to make an Android version of a relativly simple iOS app that uses a webview, some buttons and then relies on javascript calls to a CMS.
But I'm stuck at a pretty early point of development: The webview doesn't function with javascript.I've read a lot of posts about how to enable JS in an Android webview, but no luck so far.
Below is some of my code:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mWebView = (WebView) findViewById(R.id.webview);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.setWebChromeClient(new WebChromeClient());
mWebView.setWebViewClient(new HelloWebViewClient()
{
@Override
public void onPageFinished(WebView view, String url)
{
//Calling an init method that tells the website, we're ready
mWebView.loadUrl("javascript:m2Init()");
page1(mWebView);
}
});
mWebView.loadUrl("http://my_url/mobile/iphone//app.php");
}
private class HelloWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
}
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if ((keyCode == KeyEvent.KEYCODE_BACK) && mWebView.canGoBack()) {
mWebView.goBack();
return true;
}
return super.onKeyDown(keyCode, event);
}
public void page11(View view)
{
mWebView.loadUrl("javascript:m2LoadPage(1)");
}
What am I doing wrong here?
The URL is working perfectly in my iOS app, and in a browser.
But not in my app!
Please tell me it's something obvious...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(12)
固定的!
在错误的刺激下,我发现我需要
设置
setDomStorageEnabled(true)
为 webview 设置
。感谢您的帮助斯蒂芬:)
FIXED!
Spurred on by the error, I found out that I needed to set
setDomStorageEnabled(true)
for the webview settings.
Thanks for your help Stephan :)
万一 Android 上的 WebView 无法正常工作,我总是尝试确保我设置了这些疯狂的标志,例如,
我想知道为什么默认情况下没有设置这些标志,现在谁会期望没有 javascript 内容的网页,以及有 javascript 有什么用除非指定,否则当 DOM 不可用时启用。希望有人已经将此作为错误或改进/功能请求提交,并且猴子正在努力解决它。
然后有一些不推荐使用的东西在某个地方腐烂,就像这样:
所有这些都是为了在应用程序内加载网页。
在 iOS 上,一切都如此简单 - Swift 3.0
In case something with WebView on Android does not work, I always try to make sure I set these crazy flags such as,
I wonder why these are not set by Default, who would expect webpages without javascript content nowadays, and whats the use having javascript enabled when DOM is unavailable unless specified. Hope someone filed this as a bug or improvement/feature-request already and the monkeys are working on it.
and then there is deprecated stuff rotting somewhere, like this:
All this for loading webpages inside app.
On iOS, its all so simple - Swift 3.0
主要是,这三行足以使 Javascipt 在 webView 中工作...
如果之后它也不起作用,那么也添加下面的行。
实际上,您需要 setJavaScriptEnabled() 和 setWebChromeClient(new WebChromeClient()) 才能使 JavaScript 正常工作。如果您只使用 webSetting.setJavaScriptEnabled(true);那么就不行了。
Mainly, these three lines will be enough to make the Javascipt work in webView...
If it's not working after that also, then add below line also.
Actually, you need both setJavaScriptEnabled() and setWebChromeClient(new WebChromeClient()) to make the JavaScript work. If you will use only webSetting.setJavaScriptEnabled(true); then it won't work.
在 webview 中加载 javascript
Loading javascript in webview
在 MainActivity.java 中添加以下代码行
它帮助我启用 js
不要忘记 AndroidManifest 文件中的此权限。
Add the following lines of code in your MainActivity.java
It helped me to enable js
do not forget about this permission in AndroidManifest file.
您是否在清单中启用了正确的互联网权限?否则一切看起来都很好。您是否也在实际的 Android 手机上测试过这段代码?不仅仅是在模拟器上?
这是一个关于稍微不同的方法的很好的教程。您可能想尝试一下,看看它是否适合您。
Did you enable the right internet permission in the manifest? Everything looks fine otherwise. By any chance, have you also tested this code on an actual Android phone? And not just on the emulator?
Here is a good tutorial on a slightly different approach. You may want to try that one to see if it works for you.
该视频 (http://youtu.be/uVqp1zcMfbE) 给了我让它发挥作用的提示。
关键是将
html
和js
文件保存在 Androidassets/
文件夹中。然后您可以通过以下方式轻松访问它们:
This video (http://youtu.be/uVqp1zcMfbE) gave me the hint to make it work.
The key is to save your
html
andjs
files in the Androidassets/
folder.Then you can easily access them via:
如果您使用 Kotlin,您可以使用以下方法让 JavaScript 正常工作:
同时确保您的整个文件夹位于 Assets 文件夹内(这包括 HTML、Javascript 和其他所需文件)
If you are in Kotlin you can use the following method to get the JavaScript working :
Also make sure that your entire folder is inside the Assets folder (this includes HTML, Javascript and other file needed)
Xamarin Android也存在同样的问题,即WebView不执行任何Javascript。按照 @computingfreak 的回答:
奇怪的是,他们将所有 setter 方法更改为属性,除了
SetSupportZoom
和SupportZoom
保留为 getter :/Xamarin Android also has the same problem that WebView does not execute any Javascript. Follow @computingfreak answer:
Weirdly enough they changed all setter methods to properties except
SetSupportZoom
andSupportZoom
stays as getter :/只需允许您的 WebView 运行 JS,就这么简单:
Just permit your WebView to run JS, simple like that:
要在 WebView 中启用 javascript 弹出窗口,需要设置 webChromeClient 并覆盖 openFileChooser 方法。
并按如下方式处理 onActivityResult:
To enable javascript popups in WebView its necessary to set webChromeClient and override openFileChooser methods.
And handle the onActivityResult as below:
如果以上没有帮助尝试在 WebViewClient.onPageFinished 侦听器中添加延迟
If nothing above helped try to add delay in WebViewClient.onPageFinished listener