JavaScript doesn't work on ICS

前端 未结 3 919
我在风中等你
我在风中等你 2021-01-15 11:14

I am working on EPUB reader for the company using JavaScript, the application runs well on Android 2.2, but when i try it on ICS & HoneyCom, the JavaScript doesn\'t work

3条回答
  •  隐瞒了意图╮
    2021-01-15 11:53

    Might be a stupid thing i'm saying here. But it's late and i'm tired ...

    Have you tried enabling Javascript in the WebView?

    WebSettings webSettings = myWebView.getSettings();
    webSettings.setJavaScriptEnabled(true);
    

提交回复
热议问题