如何在Infowindow中设置自定义标记的信息图标(i)?当我点击我的标记时,infowindow显示。 infowindow包含我点击的地方的名称。我想在名称的右侧显示信息图标。 我的drawable文件夹中有信息徽标。只需要在infowindow中显示出来。 任何帮助都会受到赞赏!
答案 0 :(得分:0)
Since, you want to customize the info_window layout, Create a custom layout of your choice of views and position.
mMap.setInfoWindowAdapter(new GoogleMap.InfoWindowAdapter() {
@Override
public View getInfoWindow(Marker marker) {
return null;
}
@Override
public View getInfoContents(Marker marker) {
View view = getLayoutInflater().inflate(R.layout.custom_info_window,null);
tv_Locality.setText( marker.getTitle());
tv_Snippet.setText( marker.getSnippet());
return view;
}
});
Refer: https://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap