Android webView 中调试javaScripte

mywebview.setWebChromeClient(new WebChromeClient() {
     public void onConsoleMessage(String message, int lineNumber, String sourceID) {
       Log.d("MyApplication", message + " -- From line "
                            + lineNumber + " of "
                            + sourceID);
     }
   });
 
这样以后,就可以在DDMS里的logcat输出js里面的console了
 
 js里面随便哪里console.log(“lalala”);就可以了
 

你可能感兴趣的:(Android webView 中调试javaScripte)