gpt4 book ai didi

java - 谷歌地图标记showinfowindow自定义Android

转载 作者:行者123 更新时间:2023-12-01 16:18:07 24 4
gpt4 key购买 nike

在我的应用程序中,我必须显示有关位置处的标记的信息。这是我的工作代码。

mPerth = mMap.addMarker(new MarkerOptions()
.position(PERTH)
.title("Perth")
.snippet("Population: Perth")
.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_ORANGE)));
mPerth.showInfoWindow();

这看起来像这样的图片: enter image description here

我想要看起来像这样的图片: enter image description here如果你有什么方法,请投票给我。

最佳答案

试试这个。

marker.setInfoWindowAnchor(1f,1f)

https://developers.google.com/android/reference/com/google/android/gms/maps/model/Marker#public-void-setinfowindowanchor-float-anchoru,-float-anchorv

编辑:

对于自定义 infoWindow,您必须具体实现 GoogleMap.InfoWindowAdapter 并在 getInfoWindow(Marker marker) 方法中扩充您的 custom_info_window_layout.xml 文件。

public class CustomInfoWindowAdapter implements GoogleMap.InfoWindowAdapter {

Activity context;
CustomInfoWindow(Activity context){
this.context =context;
}

@Override
public View getInfoWindow(Marker marker) {
View view = context.getLayoutInflater().inflate(R.layout.custom_info_window_layout, null);

TextView title =(TextView) view.findViewById(R.id.tv_title);
TextView snippet =(TextView) view.findViewById(R.id.tv_snippet);

title.setText(marker.getTitle());
snippet.setText(marker.getSnippet());

return view;
}

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

}

最后在 map 上设置这个CustomInfoWindowAdapter

map.setInfoWindowAdapter(new CustomInfoWindowAdapter(MainActivity.this))

关于java - 谷歌地图标记showinfowindow自定义Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62350019/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com