如何在android应用程序中加载jquery mobile网页,以及在android应用程序文件夹中需要放置jquery mobile html文件以便访问它的位置
最佳答案
将html文件放在应用程序的assets文件夹中,然后使用webview加载它。
WebView wv= (WebView) findViewById(R.id.wv);
wv.getSettings().setPluginsEnabled(true);
WebSettings webSettings = wv.getSettings();
webSettings.setJavaScriptEnabled(true);
wv.loadUrl("file:///android_asset/myfile.html");