2

我正在为使用 JavaScript 的公司开发 EPUB 阅读器,该应用程序在 Android 2.2 上运行良好,但是当我在 ICS 和 HoneyCom 上尝试时,JavaScript 无法正常运行。我遇到的第一个问题,WebView不加载 JS 文件(Unknown Error -6),所以我使用了这个解决方案:

@TargetApi(11)
@Override
public WebResourceResponse shouldInterceptRequest(WebView view, String url) {
    Log.d("shouldInterceptRequest", url);

    InputStream stream = inputStreamForAndroidResource(url);
    if (stream != null) {
        return new WebResourceResponse("text/javascript", "utf-8", stream);
    }
    return super.shouldInterceptRequest(view, url);
}

private InputStream inputStreamForAndroidResource(String url) {
    final String ANDROID_ASSET = "file:///android_asset/";

    if (url.contains(ANDROID_ASSET)) {
        // url = url.replaceFirst(ANDROID_ASSET, "");
        String[] f = url.split("/");
        url = "epub/"
                + f[f.length - 1]
                        .substring(0, f[f.length - 1].indexOf("'"));
        try {
            AssetManager assets = mActivity.getAssets();
            Uri uri = Uri.parse(url);
            return assets
                    .open(uri.getPath(), AssetManager.ACCESS_STREAMING);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    return null;
}

现在我没有这个错误,但JS仍然不起作用。有没有人有办法解决吗?

4

3 回答 3

1

the only solution I found is the same as the question....

于 2012-10-31T03:22:38.880 回答
0

我在这里说的可能是一件愚蠢的事情。但是已经很晚了,我累了...

您是否尝试过Javascript在 中启用WebView

WebSettings webSettings = myWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
于 2012-09-23T11:35:35.860 回答
0

您也可以在 manifest.xml 的应用程序标签中添加一个属性 android:hardwareAccelerated="true" 您可以在创建时添加一些设置

wvMain.getSettings().setSupportZoom(true);
      wvMain.getSettings().setBuiltInZoomControls(true);
      wvMain.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_OVERLAY);
      wvMain.setScrollbarFadingEnabled(true);
      wvMain.getSettings().setLoadsImagesAutomatically(true);
      wvMain.getSettings().setJavaScriptEnabled(true);
      wvMain.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
       wvMain.getSettings().setPluginsEnabled(true);
         wvMain.getSettings().setSupportZoom(false);     

         wvMain.getSettings().setCacheMode(wvMain.getSettings().LOAD_NO_CACHE);
         webSettings8.setPluginState(WebSettings.PluginState.ON);
         wvMain.setWebViewClient(new WebViewClient());
         wvMain.addJavascriptInterface(this, "Android");
         wvMain.getSettings().setSupportMultipleWindows(true);
         wvMain.getSettings().setPluginsEnabled(true);
         wvMain.getSettings().setUseWideViewPort(true);
         wvMain.getSettings().setLoadWithOverviewMode(true);

我希望这有帮助。但请注意,硬件加速属性在 3.0 之后支持。

于 2012-09-24T13:26:18.843 回答