如何根据OnInfoWindowClick打开不同的活动

时间:2017-03-11 07:25:44

标签: java android google-maps google-maps-api-3 infowindow

我正忙于在Android Studio中使用Maps API创建应用程序。
我已成功为我的Google Map创建了OnInfoWindowClickListener。我在Google地图上设置了2个不同的标记,但我想最终设置数千个标记。
当用户点击信息窗口时,它必须打开一个新活动
例如,如果用户点击标记A',那么'活动A'必须打开。或者,如果用户点击了标记B'那么'活动B'必须打开。或者,如果用户点击了标记C'那么'活动C'必须打开。

我试图使用&if; if语句&否则如果陈述'在我的代码中,但当我点击Marker的信息窗口时,没有任何反应?

package com.msp.googlemapsproject;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;

import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapFragment;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.Marker;
import com.google.android.gms.maps.model.MarkerOptions;

public class MainActivity extends Activity {

    static final LatLng CapeTown = new LatLng(-29.759933, 30.801030);
    static final LatLng Durban = new LatLng(-29.858680, 31.021840);
    private GoogleMap googleMap;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        try{

            if (googleMap == null) {

                googleMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();

            }

            googleMap.setMapType(GoogleMap.MAP_TYPE_HYBRID);
            googleMap.setMyLocationEnabled(true);
            googleMap.setTrafficEnabled(true);
            googleMap.setIndoorEnabled(true);
            googleMap.setBuildingsEnabled(true);
            googleMap.getUiSettings().setZoomControlsEnabled(true);

            final Marker marker_CapeTown = googleMap.addMarker(new MarkerOptions().position(CapeTown).title("Cape Town"));
            final Marker marker_Durban = googleMap.addMarker(new MarkerOptions().position(Durban).title("Durban"));

            googleMap.setOnInfoWindowClickListener(new GoogleMap.OnInfoWindowClickListener() {

                @Override
                public void onInfoWindowClick(Marker marker) {
                    if (googleMap.equals("Durban")) {
                        Intent intent = new Intent(MainActivity.this, Durban.class);
                        startActivity(intent);
                    }

                    else if (googleMap.equals("Cape Town")) {
                        Intent intent = new Intent(MainActivity.this, CapeTown.class);
                        startActivity(intent);
                    }
                }
            });

        } catch (Exception e) {

            e.printStackTrace();
        }
    }
}

1 个答案:

答案 0 :(得分:2)

你在if子句中这样检查:

if (googleMap.equals("Durban")) {
      Intent intent = new Intent(MainActivity.this, Durban.class);
      startActivity(intent);
}

但您应该检查public void onInfoWindowClick(Marker marker)方法的标记。

做这样的事情:

if (marker.getTitle().equals("Durban")) {
      Intent intent = new Intent(MainActivity.this, Durban.class);
      startActivity(intent);
}