,可以通过以下步骤实现:
implementation 'com.google.android.gms:play-services-maps:17.0.0'
<com.google.android.gms.maps.MapView
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
private MapView mapView;
private GoogleMap googleMap;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_target);
mapView = findViewById(R.id.mapView);
mapView.onCreate(savedInstanceState);
mapView.getMapAsync(new OnMapReadyCallback() {
@Override
public void onMapReady(GoogleMap map) {
googleMap = map;
// 在此处可以对GoogleMap对象进行操作
}
});
}
@Override
protected void onResume() {
super.onResume();
mapView.onResume();
}
@Override
protected void onPause() {
super.onPause();
mapView.onPause();
}
@Override
protected void onDestroy() {
super.onDestroy();
mapView.onDestroy();
}
@Override
public void onLowMemory() {
super.onLowMemory();
mapView.onLowMemory();
}
Intent intent = new Intent(SourceActivity.this, TargetActivity.class);
intent.putExtra("googleMap", googleMap);
startActivity(intent);
Intent intent = getIntent();
if (intent != null) {
GoogleMap googleMap = intent.getParcelableExtra("googleMap");
// 在此处可以对GoogleMap对象进行操作
}
通过以上步骤,你可以在一个活动中访问另一个活动中的GoogleMap对象。请注意,这只是一个基本示例,实际应用中可能需要根据具体需求进行适当的修改和扩展。对于更复杂的场景,你可能需要使用更高级的技术,如使用接口进行通信或使用全局变量来共享对象。
领取专属 10元无门槛券
手把手带您无忧上云