如何在Webview上加载链接?

时间:2015-09-10 20:27:49

标签: javascript android web webview

我有以下代码可以在Webview上加载谷歌地图:

        webView.getSettings().setJavaScriptEnabled(true);
        webView.getSettings().getBuiltInZoomControls();
        webView.getSettings().setBuiltInZoomControls(true);
        webView.loadUrl("file:///android_asset/javascript.html");

javascript.html:

function initialize() {

  //https://developers.google.com/maps/documentation/javascript/controls
  latLng = new google.maps.LatLng(29.7628, -95.3831);
  window.android.JavaScript_Request_LatLng();
  var mapOptions = {
      zoom: 10,
      center: latLng
  };

map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);

    marker = new google.maps.Marker({
        position: latLng,
        map: map,
        draggable: true,
        title: 'This is a marker'
    }); 

 google.maps.event.addDomListener(window, 'load', initialize);

现在,我想从此链接加载图片:

picture from a link

我听说过异步,但我不知道从哪里开始。

我是否先在Google地图上加载图片或先关闭谷歌地图webview,然后加载此图片?

有人可以给我一些提示或示例代码吗?

非常感谢你的帮助。

0 个答案:

没有答案