Android Google Maps v2可点击标记标题

时间:2015-02-12 18:01:06

标签: java android google-maps maps

我的应用上有Google地图。标记已经可以点击了,但是我正在寻找一种方法来使标题可点击以执行操作(比如去一个地方的“描述”页面)。这就是我的意思

http://i.imgur.com/ndwOjx9.png?1

    public class MapFragment extends Fragment {

    private GoogleMap map;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {

        View rootView = inflater.inflate(R.layout.fragment_map, container,
                false);

        String myTag = getTag();
        ((PlacesAndMapActivity) getActivity()).setTabFragmentMap(myTag);


        map = ((SupportMapFragment) getFragmentManager().findFragmentById(
                R.id.map)).getMap();

        map.addMarker(new MarkerOptions().position(new LatLng(34.039407, -118.254763))
                .title("Restaurant 1"));

        return rootView;
    }
    }

无论如何,我可以点击标题吗?感谢

1 个答案:

答案 0 :(得分:8)

您想使用GoogleMap.OnInfoWindowClickListener

班级概述 用于标记信息窗口上的点击/点击事件的回调界面。

public abstract void onInfoWindowClick (Marker marker)

点击标记的信息窗口时调用。