Android Google Map - Clicked marker opens new activity or bigger window

前端 未结 5 1626
梦毁少年i
梦毁少年i 2020-12-14 02:41

I\'ve been searching for help on implementing OnMarkerClickListener but nothing I\'ve found has worked. This is my marker below and when clicked it only changes colour(light

5条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-14 02:56

    Marker click events

    Don't snap to marker after click in android map v2

    Quoting from the above post

    You can use an OnMarkerClickListener to listen for click events on the marker. To set this listener on the map, call GoogleMap.setOnMarkerClickListener(OnMarkerClickListener). When a user clicks on a marker, onMarkerClick(Marker) will be called and the marker will be passed through as an argument. This method returns a boolean that indicates whether you have consumed the event (i.e., you want to suppress the default behavior). If it returns false, then the default behavior will occur in addition to your custom behavior. The default behavior for a marker click event is to show its info window (if available) and move the camera such that the marker is centered on the map.

    https://developers.google.com/maps/documentation/android/reference/com/google/android/gms/maps/GoogleMap.OnMarkerClickListener.

    Use OnMarkerClickListener on your marker.

    Check the link for code snippets

    Google Maps API v2: How to make markers clickable?

    Example: Works on my phone

    
        Marker source, destination;
        GoogleMap mMap;
    
        mMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
        source = mMap.addMarker(new MarkerOptions()
                .position(sc)
                .title("MyHome")
                .snippet("Bangalore")
                .icon(BitmapDescriptorFactory.fromResource(R.drawable.pin)));
    
        destination = mMap.addMarker(new MarkerOptions()
                .position(lng)
                .title("MapleBear Head Office")
                .snippet("Jayanager")
                .icon(BitmapDescriptorFactory.fromResource(R.drawable.pin)));
    
        mMap.setOnMarkerClickListener(marker -> {
            if (marker.getTitle().equals("MyHome")) // if marker source is clicked
                Toast.makeText(MainActivity.this, marker.getTitle(), Toast.LENGTH_SHORT).show();// display toast
            return true;
        });
    
    

提交回复
热议问题