将数组/数组列表传递到android中的Javascript

时间:2012-05-25 05:25:34

标签: javascript android html5 webview

我想将一个数组或一个arraylist作为参数值传递给javascript方法而不是我现在传递的字符串

以下代码:

String url = javascript:deviceList("{\"requestID\":\"1000\",\"deviceList[i]":\"[com.Experiment5.bluetooth.BluetoothDevices;@4a35cff0\" }")  

webView.loadUrl(url);  

和javascript代码:

deviceList : function (response) {  
    response = JSON.parse(response);  
    //jQuery("#messagebox").show();  
    out = '<select id="bluetoothList">';  
    for (i = 0; i < response.deviceList.length; i++) {  
        out += "<options>" + response.deviceList[i].deviceId
            + "</options>";  
    }  
    out += '<select>';  

0 个答案:

没有答案