如何在android中使javascript动态(向变量数组添加值)

如何在android中使javascript动态(向变量数组添加值),android,google-maps-api-3,Android,Google Maps Api 3,我正在资产文件夹中使用以下代码并加载代码。如何使代码值动态 特别是如何从服务器向变量数组添加值,而不是从html文件静态添加值。['Bondi Beach',-33.890542151.274856,4] 请引导我,非常感谢任何帮助。提前谢谢 <!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" />

我正在资产文件夹中使用以下代码并加载代码。如何使代码值动态

特别是如何从服务器向变量数组添加值,而不是从html文件静态添加值。['Bondi Beach',-33.890542151.274856,4]

请引导我,非常感谢任何帮助。提前谢谢

<!DOCTYPE html>
<html> 
<head> 
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> 
  <title>Google Maps Multiple Markers</title> 
  <script src="http://maps.googleapis.com/maps/api/js?sensor=true" 
          type="text/javascript"></script>
</head> 
<body>
  <div id="map" style="width: 500px; height: 400px;"></div>

  <script type="text/javascript">
    var locations = [
      ['Bondi Beach', -33.890542, 151.274856, 4],
      ['Coogee Beach', -33.923036, 151.259052, 5],
      ['Cronulla Beach', -34.028249, 151.157507, 3],
      ['Manly Beach', -33.80010128657071, 151.28747820854187, 2],
      ['Maroubra Beach', -33.950198, 151.259302, 1]
    ];

    var map = new google.maps.Map(document.getElementById('map'), {
      zoom: 10,
      center: new google.maps.LatLng(-33.92, 151.25),
      mapTypeId: google.maps.MapTypeId.ROADMAP
    });

    var infowindow = new google.maps.InfoWindow();

    var marker, i;

    for (i = 0; i < locations.length; i++) {  
      marker = new google.maps.Marker({
        position: new google.maps.LatLng(locations[i][1], locations[i][2]),
        map: map
      });

      google.maps.event.addListener(marker, 'click', (function(marker, i) {
        return function() {
          infowindow.setContent(locations[i][0]);
          infowindow.open(map, marker);
        }
      })(marker, i));
    }
  </script>
</body>
</html>

您可以尝试使用html标记动态地使用一些数据。请参见以下示例作为参考:

  • 在HTML文件中:

    变量位置=%locations\u列表%

  • 在您的主要活动中:

    private static final String HTML_FILE = "your_html_file.html";
    private static final String HTML_FILE_DESTINATION = "file:///android_asset/your_html_file.html";
    private static final String MIME_TYPE = "text/html";
    private static final String ENCODING = "UTF-8";
    
        private void setWebViewConfiguration(){       
    
        webView.getSettings().setJavaScriptEnabled(true);
        webView.getSettings().setLoadWithOverviewMode(true);
        webView.getSettings().setUseWideViewPort(true);
        webView.getSettings().setSupportZoom(false);
    
        /** Set tokens. */
    
        String content = readTextFromHTML(getActivity(), HTML_FILE)
                .replaceAll( %locations_list%, "[['Bondi Beach', -33.890542, 151.274856, 4],['Coogee Beach', -33.923036, 151.259052, 5]]");
    
        /** Load data. */
    
        webView.loadDataWithBaseURL(
                HTML_FILE_DESTINATION, content,
                MIME_TYPE, ENCODING, null);
                 }
    
        public static String readTextFromHTML(Context context, String file) {
        InputStream is;
        try {
            is = context.getAssets().open(file);
            int size = is.available();
            byte[] buffer = new byte[size];
            is.read(buffer);
            is.close();
            return new String(buffer);
        } catch (IOException e) {
            return "";
        }
            }
    
  • private static final String HTML_FILE = "your_html_file.html";
    private static final String HTML_FILE_DESTINATION = "file:///android_asset/your_html_file.html";
    private static final String MIME_TYPE = "text/html";
    private static final String ENCODING = "UTF-8";
    
        private void setWebViewConfiguration(){       
    
        webView.getSettings().setJavaScriptEnabled(true);
        webView.getSettings().setLoadWithOverviewMode(true);
        webView.getSettings().setUseWideViewPort(true);
        webView.getSettings().setSupportZoom(false);
    
        /** Set tokens. */
    
        String content = readTextFromHTML(getActivity(), HTML_FILE)
                .replaceAll( %locations_list%, "[['Bondi Beach', -33.890542, 151.274856, 4],['Coogee Beach', -33.923036, 151.259052, 5]]");
    
        /** Load data. */
    
        webView.loadDataWithBaseURL(
                HTML_FILE_DESTINATION, content,
                MIME_TYPE, ENCODING, null);
                 }
    
        public static String readTextFromHTML(Context context, String file) {
        InputStream is;
        try {
            is = context.getAssets().open(file);
            int size = is.available();
            byte[] buffer = new byte[size];
            is.read(buffer);
            is.close();
            return new String(buffer);
        } catch (IOException e) {
            return "";
        }
            }