如何在GoogleMaps中将图片放入信息窗口

时间:2017-06-20 11:59:11

标签: android google-maps infowindow

如何在运行谷歌地图的Android应用程序中将图片放入infowindow?

Marker melbourne = mMap.addMarker(new MarkerOptions()
            .position(MELBOURNE)
            .title("Melbourne")
            .snippet("Population: 4'137'400"));

这是我如何添加一些文字,但我不知道如何在其中添加图像。而且,我必须在哪里保存它?

到目前为止,我的应用有效,但只是没有图像。

/感谢

1 个答案:

答案 0 :(得分:0)

您必须对布局进行充气,然后才能将图像放入infoWindow。

参考此代码:

  googleMap.setInfoWindowAdapter(new InfoWindowAdapter() {
          @Override
            public View getInfoWindow(Marker marker) {

            View v = getApplicationContext().getLayoutInflater().inflate(R.layout.info_window_map_screen_new, null);

             return v;
           };
           @Override
         public View getInfoContents(Marker marker) {
             return null;
         }
    });