多亏了 SetOnInfoWindowClickListener 方法,我在我的 GoogleMap 上放了一个监听器,然后我想用“On Info Window Click”管理为我的 Google Map 的每个标记打开一个不同的新活动。我的问题是该方法只能为我的所有 GoogleMap 管理 1 个标记,而不是管理不同的标记。
那里的代码:
public void onInfoWindowClick(Marker marker) {
Intent intent = new Intent(MapActivity.this,OtherActivity.class);
startActivity(intent);
}
有人有这个问题的答案吗?
谢谢。