0
startActivity経由でマップをインテントとして表示しています(下のように)。Googleマップのonresumeを無効にする方法
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を上書きする方法は?