我正在尝试动态创建一个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>

最佳答案

commit()上的FragmentTransaction不会立即执行其操作。到您调用setUpMap()时,尚未在onCreateView()上调用SupportMapFragment,因此
尚未成为 map 。

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

关于android - SupportMapFragment的getMap()返回null,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16322017/

10-10 01:06