WebView addJavascriptInterface function with Parameters
问题 I have added a JavaScript Interface to WebView. I am able to use all the Functions which has no Parameters. But When i gave the Parameter from JavaScript. The function are not called by WebView. See Code Javascript function getCellString(row, column) { return Report.getCellString(row,column); } WebView webView.addJavascriptInterface(new JavaScriptInterface(), "Report"); Javascript Interface public class JavaScriptInterface { public String getCellString(int row, int column) { return row + ","