0

我正在尝试加载offline version of python documentationwebview来自asset文件夹。离线文档在我的 pc 网络浏览器中完美运行,但在webview(类似jquery is missing)中无法正常运行。

@SuppressLint("SetJavaScriptEnabled")
public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        WebView webView = (WebView) findViewById(R.id.wrapper);
        webView.getSettings().setJavaScriptEnabled(true);
        webView.setWebChromeClient(new WebChromeClient());
        webView.loadUrl("file:///android_asset/python/index.html");
    }

}

当我尝试加载主页或导航到任何页面时,会显示此错误消息。

09-24 01:03:02.789: E/Web Console(479): ReferenceError: Can't find variable: $ at file:///android_asset/python/index.html:164

我错过了什么?

4

1 回答 1

0

好的,这不会像我打算像 phonegap 应用程序那样工作。我正在使用 Java 在 Android 平台上工作。网页现在像其他安卓应用程序一样正常。

于 2014-02-07T01:07:08.483 回答