10

我正在尝试SupportMapFragment动态创建一个并将其放入FrameLayout容器中。

我的问题是mMapFragment.getMap()返回null...

有人可以帮忙吗?

CenterMapFragment.java

public class CenterMapFragment extends Fragment {

    private SupportMapFragment mMapFragment;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

        return inflater.inflate(R.layout.center_map_fragment, container, false);
    }

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

        if (GooglePlayServicesUtil.isGooglePlayServicesAvailable(getActivity()) == ConnectionResult.SUCCESS) {
            setUpMapIfNeeded();
        }
    }


    private void setUpMapIfNeeded() {

        if (mMapFragment == null) {

            mMapFragment = SupportMapFragment.newInstance();
            FragmentTransaction fragmentTransaction =
                            getChildFragmentManager().beginTransaction();
            fragmentTransaction.replace(R.id.map, mMapFragment);
            fragmentTransaction.commit(); 

            setUpMap();
        }
    }

    private void setUpMap() {       

        GoogleMap map = mMapFragment.getMap();  

        // map is null!

    }

    @Override
    public void onResume()
    {
        super.onResume();
        setUpMapIfNeeded();     
    }
}

center_map_fragment.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <FrameLayout
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
    </FrameLayout>

    <Button
        android:id="@+id/btn_loc"
        android:layout_width="60dp"
        android:layout_height="50dp"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:background="@drawable/locbtn" />

</RelativeLayout>
4

3 回答 3

8

commit()on aFragmentTransaction不会立即执行其操作。到您调用 时setUpMap()onCreateView()不会在 上调用SupportMapFragment,因此还没有地图。

一种方法是不使用嵌套片段,而是选择CenterMapFragment扩展SupportMapFragment,在这种情况下getMap()应该在之后的任何时间工作onCreateView()(例如,onActivityCreated())。

于 2013-05-01T16:24:21.540 回答
2

在以下链接中,MapView 被用作 CommonsWare 在他评论的最后一部分中建议的:

http://ucla.jamesyxu.com/?p=287

public class MapFragment extends Fragment {

    MapView m;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, 
            Bundle savedInstanceState) {
        // inflat and return the layout
        View v = inflater.inflate(R.layout.map_fragment, container, false);
        m = (MapView) v.findViewById(R.id.mapView);
        m.onCreate(savedInstanceState);

        return v;
    }

    @Override
    public void onResume() {
        super.onResume();
        m.onResume();
    }

    @Override
    public void onPause() {
        super.onPause();
        m.onPause();
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        m.onDestroy();
    }

    @Override
    public void onLowMemory() {
        super.onLowMemory();
        m.onLowMemory();
    }
}

我希望这些会有所帮助。

于 2013-09-29T15:50:07.540 回答
1

打电话

fragmentTransaction.commit();

是异步的,当您从地图返回时,地图还没有准备好。只需调用

getFragmentManager().executePendingTransactions();

作为下一行,这将使其同步并为下一条指令执行它以获取完成的地图。如果您担心它花费的时间,请将整个初始化放入AsyncTask并在地图初始化时向用户显示进度指示器。

于 2014-12-18T10:37:05.053 回答