未知的铬错误:-6(jquery mobile)

时间:2012-11-04 14:57:26

标签: android jquery mobile chromium

我正在开发一个Android原生应用程序,我正在使用Webview来加载我的android_asset / www / index.html文件:

import android.app.Activity;
import android.os.Bundle;
import android.view.Window;
import android.webkit.WebChromeClient;
import android.webkit.WebView;
import android.webkit.WebViewClient;

public class MainActivity extends Activity
{
    final Activity activity = this;

    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        WebView webView = (WebView) findViewById(R.id.webview);
        webView.getSettings().setJavaScriptEnabled(true);

        webView.setWebChromeClient(new WebChromeClient() {

        });

        webView.setWebViewClient(new WebViewClient() {
            @Override
            public void onReceivedError(WebView view, int errorCode, String description, String failingUrl)
            {
                // Handle the error
            }
        });

        webView.loadUrl("file:///android_asset/www/index.html");
    }
}

这一切都很好用,直到我把jquery-mobile js的导入放在标题中:

<html>
<head>
    <link rel="stylesheet" href="css/jquery.mobile-1.2.0.min.css" />
    <script src="js/jquery-1.8.2.min.js"></script>
    <script src="js/jquery.mobile-1.2.0.min.js"></script>
</head>

<body>
</body>

当我将jquery mobile js包含到我的html文档中时,logcat会给我一个未知的铬错误-6。当我包含普通的jquery js时,这不会发生。

我正在使用android 4.0.3在nexus S上运行我的应用程序

有没有人有使用这个框架的经验?

提前致谢

1 个答案:

答案 0 :(得分:1)

如果您还没有找到解决方案,我会在搜索同样的问题时遇到以下链接:

Phonegap Discussion Group

Question on Stackoverflow