我希望使用可编辑的标题和片段向 googleMap 添加标记。当用户长按地图时,应该会出现标记,然后应该会出现标记,显示类似“点击编辑”的标题。
代码全部启动并运行,除了我不知道如何在创建标记时显示标题。我只能通过随后单击标记使其出现。我在 MarkerOptions 中看不到任何允许我这样做的东西。我错过了什么?
我希望使用可编辑的标题和片段向 googleMap 添加标记。当用户长按地图时,应该会出现标记,然后应该会出现标记,显示类似“点击编辑”的标题。
代码全部启动并运行,除了我不知道如何在创建标记时显示标题。我只能通过随后单击标记使其出现。我在 MarkerOptions 中看不到任何允许我这样做的东西。我错过了什么?
您正在寻找的选项不在其中,MarkerOptions
它本身就是一个函数Marker
。这是相关文档的链接
marker.showInfoWindow();
要调用此方法,您需要拥有标记或对其的引用。如果您在创建时执行此操作,它应该很容易。否则,只需将您的制造商存储在某个集合中 - 就像HashMap
这样很容易找到 - 您可以随时显示信息窗口。
如果您想以自己的自定义方式显示标记的标题和片段 - 您可以将其设置在onMapReadyCallback
.
@Override
public void onMapReady(GoogleMap googleMap) {
mGoogleMap = googleMap;
mGoogleMap.setInfoWindowAdapter(new GoogleMap.InfoWindowAdapter() {
@Override
public View getInfoWindow(Marker marker) {
return null;
}
@Override
public View getInfoContents(Marker marker) {
View view = getLayoutInflater().inflate(R.layout.marker_info, null);
TextView textViewTitle = (TextView) view.findViewById(R.id.marker_title);
textViewTitle.setText(marker.getTitle());
TextView textViewSnippet = (TextView) view.findViewById(R.id.marker_snippet);
textViewSnippet.setText(marker.getSnippet());
return view;
}
});
这是我的布局文件。
marker_info.xml
.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/marker_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textStyle="bold"
android:gravity="center"/>
<TextView
android:id="@+id/marker_snippet"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"/>
</LinearLayout>