我是phoneGap的新手,我正在尝试在android中实现一个支持SVG的webview,以使用protovis(基于javaScript)库http://mbostock.github.com/protovis/呈现一些可视化方法。
我有以下代码来加载 html 文件。
public class HelloPhoneGapActivity extends DroidGap {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.loadUrl("file:///android_asset/www/index.html");
}
}
现在我正在尝试渲染这个http://mbostock.github.com/protovis/ex/antibiotics-burtin-full.html,但在 android 的 webview 中我只能得到背景颜色。
是否有任何特殊选项可以构建具有呈现此功能的 web 视图?
提前致谢!