Android ActionBarActivity 和 Google 选项卡之间的地图交互

Android ActionBarActivity and Google Map interacting between tabs

在我的操作栏中 activity 我得到了这个 :

    @Override
    public Fragment getItem(int position) {
        switch (position) {
        case 0:
            return new FirstActivity();
        case 1:
            return new MapActivity();
        }
    }

我想知道如何从我的 FirstActivity 选项卡向 MapActivity 选项卡中的 google 地图添加标记?

想从 FirstActivity 访问 MapActivity setMarker 方法,但如何实现?

public void setMarker(LatLng location, String title) {
    // create marker
    MarkerOptions marker = new MarkerOptions().position(location).title(
            title);

    // Changing marker icon
    marker.icon(BitmapDescriptorFactory
            .defaultMarker(BitmapDescriptorFactory.HUE_ROSE));

    // adding marker
    googleMap.addMarker(marker);
}

检查以下链接,它会帮助你

1)https://github.com/ddewaele/GoogleMapsV2WithActionBarSherlock/blob/master/GoogleMapsV2WithActionBarSherlock/docs/part2.md

2)http://androidcookbook.com/Recipe.seamrecipeId=897&title=MapView%20inside%20TabView