我通过startActivity显示地图作为意图,如下所示。
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?
saddr=20.565442,80.35622213&daddr=21.24363633,80.7655222"));
intent.setClassName("com.google.android.apps.maps","com.google.android.maps.MapsActivity");
startActivity(intent);
这很好用。但是如何覆盖该地图的onresume和onpause?
答案 0 :(得分:0)
如果你想这样做,你应该实现自己的MapActivity。