在onMapReady之前调用onResume

时间:2016-03-21 23:41:53

标签: android

我有一个片段(fragment_search),我想在其中以编程方式添加另一个片段(map_fragment),但我遇到了一个问题,其中tab_content.onResume()被调用到了OnMapReadyCallback.onMapReady()。

以下是代码:

fragment_search.xml:

<LinearLayout...>
    <FrameLayout
            android:id="@+id/search_map_fragment_container"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

        </FrameLayout>
</LinearLayout>

some_layout.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    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"
        android:clickable="true"
    android:enabled="true"
    android:apiKey="api key" />

</LinearLayout>

SearchFragment.class(这个类中没有别的东西):

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.fragment_search, container, false);
    FragmentManager fragmentManager = getFragmentManager();
    final FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();

    final SomeFragment fragment = new SomeFragment();

    OnMapReadyCallback onMapReadyCallback = new OnMapReadyCallback() {
        @Override
        public void onMapReady(GoogleMap googleMap) {
            fragment.setMap(googleMap);

            fragmentTransaction.add(R.id.search_map_fragment_container, fragment);
            fragmentTransaction.commit();
        }
    };
    fragment.getMapAsync(onMapReadyCallback);
    return view;
}

SomeFragment.class:

public class SomeFragment extends SupportMapFragment {
    MapView mapView;
    GoogleMap map;
    private MapView mMapView;
    private GoogleMap mGoogleMap;

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

        mMapView = (MapView) v.findViewById(R.id.mapview);
        mMapView.onCreate(savedInstanceState);

        return v;
    }

    public void setMap(GoogleMap map){
        this.mGoogleMap=map;
    }
...}

堆栈追踪:

java.lang.NullPointerException: Attempt to invoke interface method 'void maps.ei.bz.o()'  on a null object reference
                                                                  at maps.ei.n.b(Unknown Source)
                                                                  at com.google.android.gms.maps.internal.i$a.onTransact(:com.google.android.gms.alldynamite:115)
                                                                  at android.os.Binder.transact(Binder.java:387)
                                                                  at com.google.android.gms.maps.internal.IMapFragmentDelegate$zza$zza.onResume(Unknown Source)
                                                                  at com.google.android.gms.maps.SupportMapFragment$zza.onResume(Unknown Source)
                                                                  at com.google.android.gms.dynamic.zza$7.zzb(Unknown Source)
                                                                  at com.google.android.gms.dynamic.zza.zza(Unknown Source)
                                                                  at com.google.android.gms.dynamic.zza.onResume(Unknown Source)
                                                                  at com.google.android.gms.maps.SupportMapFragment.onResume(Unknown Source)
                                                                  at com.beermeet.ui.search.SearchFragment.onResume(SearchFragment.java:5

7)

我认为SearchFragment.onCreateView是错误的,但我不知道这样做的正确方法是什么。 关于我做错了什么的暗示?谢谢!

1 个答案:

答案 0 :(得分:1)

当您启动SearchFragment时,它显然会将其onResume()方法称为片段生命周期的一部分。 您的日志显示NullPointerException中有onResume()。你应该检查一下。

关于你的问题,

fragment.getMapAsync(onMapReadyCallback);
在获得onResume()之前将调用

onMapReadyCallback,因为getMapAsync()是异步调用,并且将在不会阻止UI线程的不同线程中运行,因此onResume()将获得在获得onMapReadyCallback

之前调用