我正在尝试让Google Maps v2在我的应用程序中正常工作。我已经看到了几个示例,这些示例显示了如何在 Activity 中打开SupportMapFragment。想法是您的 Activity 将调用setContentView(R.layout.map_layout);,其中map_layout.xml通过以下行链接到该 fragment :

android:name="com.google.android.gms.maps.SupportMapFragment"
        xmlns:map="http://schemas.android.com/apk/res-auto"

“name =“行实际上表示“此布局将由类型'SupportMapFragment'的 fragment 控制”。

我的麻烦在于,我试图使 map 出现在带有标签的 Activity 中(通过actionbarsherlock实现)。这意味着,与选项卡选择相对应的任何 fragment 都必须实现TabListener。但是SupportMapFragment没有。所以现在大概我需要创建一个新的 fragment ,如下所示:
public class MyMapFragmentWithTabListener extends SupportMapFragment implements TabListener
{

但是现在我对如何编写MapFragmentWithTabListener的内容特别是onCreateView感到困惑...我是否应该夸大某些布局?当然,我不能从示例中夸大完全相同的map_layout.xml,因为它已经声明它是由SupportMapFragment控制的,而在此实现中,它应该由MyMapFragmentWithTabListener控制-我是否需要稍微不同的xml文件来进行填充(如果因此,它应该是什么样?)-还是应该以编程方式创建 View ?

最佳答案

我现在已经在许多应用程序中做到了这一点。您无需扩展SupportMapFragment,而只需创建自己的MapFragment。您可以拥有自己的布局,并在其中放置一个MapView View 。关键是将Fragment的生命周期事件路由到MapView,然后让叔叔cle。

这里是一些示例代码:

MapFragment

package com.example.testapplication;

import java.util.concurrent.TimeUnit;

import com.google.android.gms.common.GooglePlayServicesNotAvailableException;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapView;
import com.google.android.gms.maps.MapsInitializer;


public class TestMapFragment extends Fragment {

    private MapView mMapView;

    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
    }


    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.home_fragment, container, false);

        mMapView = (MapView) view.findViewById(R.id.mapview);

        // inflat and return the layout
        mMapView.onCreate(savedInstanceState);
        mMapView.onResume();// needed to get the map to display immediately

        try {
            MapsInitializer.initialize(getActivity());
        } catch (GooglePlayServicesNotAvailableException e) {
            e.printStackTrace();
        }
        GoogleMap googleMap = mMapView.getMap();
        googleMap.getUiSettings().setMyLocationButtonEnabled(true);
        return view;
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setRetainInstance(true);
    }

    /*
     * Using a mapview in a fragment requires you to 'route'
     * the lifecycle events of the fragment to the mapview
     */
    @Override
    public void onResume() {
        super.onResume();
        if (null != mMapView)
            mMapView.onResume();
    }

    @Override
    public void onPause() {
        super.onPause();
        if (null != mMapView)
            mMapView.onPause();
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        if (null != mMapView)
            mMapView.onDestroy();
    }

    @Override
    public void onSaveInstanceState(Bundle outState) {
        super.onSaveInstanceState(outState);
        if (null != mMapView)
            mMapView.onSaveInstanceState(outState);
    }

    @Override
    public void onLowMemory() {
        super.onLowMemory();
        if (null != mMapView)
            mMapView.onLowMemory();
    }
}

和布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <com.google.android.gms.maps.MapView
        android:id="@+id/mapview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        map:uiZoomControls="false" />
</RelativeLayout>

关于android - Google在“ActionBarssherlock”选项卡中进行映射,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16794000/

10-10 08:39