第二次打开 SupportMapFragment 时出错

Posted

技术标签:

【中文标题】第二次打开 SupportMapFragment 时出错【英文标题】:Error opening SupportMapFragment for second time 【发布时间】:2013-01-11 23:50:54 【问题描述】:

第二次打开我的 SupportMapFragment(android 地图 v2)(调用 setContentView)时,出现以下错误:

01-28 16:27:21.374: E/AndroidRuntime(32743): FATAL EXCEPTION: main
01-28 16:27:21.374: E/AndroidRuntime(32743): android.view.InflateException: Binary XML file line #6: Error inflating class fragment
01-28 16:27:21.374: E/AndroidRuntime(32743):    at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:704)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at android.view.LayoutInflater.rInflate(LayoutInflater.java:746)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at android.view.LayoutInflater.inflate(LayoutInflater.java:489)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at android.view.LayoutInflater.inflate(LayoutInflater.java:396)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at android.view.LayoutInflater.inflate(LayoutInflater.java:352)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at android.view.View.inflate(View.java:16119)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at mypackage.MyView.<init>(HitsView.java:26)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at mypackage.MenuListFragment.onItemClick(MenuListFragment.java:133)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at android.widget.AdapterView.performItemClick(AdapterView.java:298)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at android.widget.AbsListView.performItemClick(AbsListView.java:1086)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at android.widget.AbsListView$PerformClick.run(AbsListView.java:2855)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at android.widget.AbsListView$1.run(AbsListView.java:3529)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at android.os.Handler.handleCallback(Handler.java:615)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at android.os.Handler.dispatchMessage(Handler.java:92)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at android.os.Looper.loop(Looper.java:137)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at android.app.ActivityThread.main(ActivityThread.java:4745)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at java.lang.reflect.Method.invokeNative(Native Method)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at java.lang.reflect.Method.invoke(Method.java:511)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at dalvik.system.NativeStart.main(Native Method)
01-28 16:27:21.374: E/AndroidRuntime(32743): Caused by: java.lang.IllegalArgumentException: Binary XML file line #6: Duplicate id 0x7f04003b, tag null, or parent id 0x0 with another fragment for com.google.android.gms.maps.SupportMapFragment
01-28 16:27:21.374: E/AndroidRuntime(32743):    at android.support.v4.app.FragmentActivity.onCreateView(FragmentActivity.java:285)
01-28 16:27:21.374: E/AndroidRuntime(32743):    at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:676)
01-28 16:27:21.374: E/AndroidRuntime(32743):    ... 20 more

XML 文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    android:layout_
    android:layout_ >
    <fragment
        android:id="@+id/hits_map"
        android:layout_
        android:layout_
        class="com.google.android.gms.maps.SupportMapFragment"
        map:mapType="normal"
        map:uiZoomControls="false"
        map:uiZoomGestures="true"
        map:cameraZoom="13"
        map:uiRotateGestures="true"
        map:uiTiltGestures="true"/>
</RelativeLayout>

MyView.class:

public class MyView extends RelativeLayout 
    private GoogleMap map;

    public MyView(Context context, FragmentActivity activity) 
        super(context);
        inflate(activity, R.layout.activity_hits, this);
        this.map = ((SupportMapFragment) activity.getSupportFragmentManager()
            .findFragmentById(R.id.hits_map)).getMap();
    

我不知道这个错误是什么意思。有人可以解释一下吗?

【问题讨论】:

您是否有一个 View 试图扩充包含片段的布局?如果有,为什么? 我是。这不是正确的使用方法吗?我正在使用滑动菜单。在他们的文档中,他们说需要调用 setContentView 来显示主视图。在这种情况下,主视图是一个包含片段的视图。链接:github.com/jfeinstein10/SlidingMenu#simple-example 我绝对不会那样做的。 你最终解决了吗? 我用的是MapView,其实我也不知道还有MapView。 【参考方案1】:

更新: 作为替代解决方案(我认为更好),您可以使用描述的 MapView:here

我在使用选项卡实现时遇到了类似的问题。使用 Google Maps V2,您会被 SupportMapFragment 困住,因此无法选择使用 MapView。在 juanmeanwhile 的帖子和在这里找到的评论 #1 (https://code.google.com/p/gmaps-api-issues/issues/detail?id=5064#c1) 之间,我设法弄清楚我做错了什么。

因此,对于遇到重复 id 错误的任何其他人,请确保您以编程方式声明片段,而不是在 XML 中。这可能意味着嵌套布局。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
   android:layout_
   android:layout_ >

<!-- Lots of fancy layout -->   

<RelativeLayout
        android:id="@+id/map"
        android:layout_
        android:layout_>
    </RelativeLayout>
</RelativeLayout>

然后您需要以编程方式创建片段,但需要仔细考虑片段生命周期 (http://developer.android.com/reference/android/app/Fragment.html#getChildFragmentManager())。为确保在正确的时间创建所有内容,您的代码应如下所示(取自注释 #1)。

public class MyFragment extends Fragment 

private SupportMapFragment fragment;
private GoogleMap map;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) 
    return inflater.inflate(R.layout.layout_with_map, container, false);


@Override
public void onActivityCreated(Bundle savedInstanceState) 
    super.onActivityCreated(savedInstanceState);
    FragmentManager fm = getChildFragmentManager();
    fragment = (SupportMapFragment) fm.findFragmentById(R.id.map);
    if (fragment == null) 
        fragment = SupportMapFragment.newInstance();
        fm.beginTransaction().replace(R.id.map, fragment).commit();
    


@Override
public void onResume() 
    super.onResume();
    if (map == null) 
        map = fragment.getMap();
        map.addMarker(new MarkerOptions().position(new LatLng(0, 0)));
    


希望这可以节省一些时间。

【讨论】:

这会在所有片段中保留地图实例吗?还是会在onPause()之后销毁? 仅供参考,您并没有被 SupportMapFragment 卡住,MapView 仍然存在并且功能齐全:developers.google.com/maps/documentation/android/reference/com/… 认为如果您使用的是 Fragment,您实际上会被 MapFragment 卡住,如果您想支持 Honeycomb,则真的是 SupportMapFragment。如果您使用的是 Activity,则情况并非如此,您可以使用 MapView(尽管我没有亲自证实这一点)。因此,在我的示例中,您基本上被该实现所困扰。如果要使用 Activity,则可以使用 MapView,但仍需要管理生命周期。 它并没有解决问题。当我再次运行它时它仍然崩溃。 @Kaleb,感谢您的想法。但实际上,我认为谷歌讨厌我们所有人。【参考方案2】:

不要在布局中声明 de SupportMapFragment,而是以编程方式进行,并确保使用 getChildFragmentMananger 而不是经典的 getFragmentManager() 来创建片段。

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

保留此 SupportMapFragment mMapFragment,因为您需要它来检索 GoogleMap 对象:

  GoogleMap map = mMapFragment.getMap();

【讨论】:

是的,您需要在地图初始化之前等待运行。我使用延迟处理程序在 10 毫秒后获取对地图的引用,或者使用生命周期对您有利。即在 onCreate 中提交片段,然后在 onResume 中获取对地图的引用。 @juanmeanwhile ,你应该使用 getMapAsync() 代替。 MapFragment【参考方案3】:

我花了半天时间解决了这个问题,只是找到了解决方法。在 YourFragment 类中覆盖您的 onCreate 方法:

public void onCreate(Bundle savedInstanceState) 
    setRetainInstance(true); 
    super.onCreate(savedInstanceState);     

并覆盖您的 onDestroy 方法:

@Override
public void onDestroyView() 
    super.onDestroyView();
    try 
        SupportMapFragment fragment = (SupportMapFragment) getActivity()
                                          .getSupportFragmentManager().findFragmentById(
                                              R.id.multi_inns_on_map);
        if (fragment != null) getFragmentManager().beginTransaction().remove(fragment).commit();

     catch (IllegalStateException e) 
        //handle this situation because you are necessary will get 
        //an exception here :-(
    

【讨论】:

这个答案让您可以在 XML 布局中定义您的子片段,我发现这比必须以编程方式用片段替换布局片段更易于管理。 请注意异常处理块,因为您有丢失对象状态的风险!这就是为什么它被称为解决方法 如果我使用 try-catch 块 if (f != null && f.isResumed()) ,它对我有用 @Jaroslav:我会在什么阶段获得异常? @TheDevMan - 例如显示旋转 catch (IllegalStateException e) //处理这种情况,因为你有必要在这里得到 //一个异常 :-( 【参考方案4】:

我整天都在寻找这个问题的解决方案,在这里阅读了所有的解决方法,我找到了解决问题的方法。我将发布所有代码,因为这个问题缺乏完整的答案,只是一些与完整场景匹配并且对任何人都有帮助的小 sn-p。

public class LocationFragment extends Fragment implements View.OnClickListener 

    private GoogleMap googleMap;
    private static View rootView;
    private SupportMapFragment supportMapFragment;

    public LocationFragment() 
    

    @Override
    public void onDestroyView() 
        super.onDestroyView();
    

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

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) 
        if(savedInstanceState == null) 

            if (rootView != null) 
                ViewGroup parent = (ViewGroup) rootView.getParent();
                if (parent != null)
                    parent.removeView(rootView);
            

            try
                if(rootView == null)
                
                    rootView = inflater.inflate(R.layout.fragment_location, container, false);
                

                supportMapFragment = (SupportMapFragment) getFragmentManager().findFragmentById(R.id.map);
                LocationUtility locationUtility = LocationUtility.getInstance(context);
                GoogleMap googleMap =  locationUtility.initilizeMap(supportMapFragment);

              //More code

             catch (Exception e)
            
                e.printStackTrace();
            
        

        return rootView;
    


通过调试,你会发现片段如何操作并不重要,onDestroyMethod等不需要botter,因为null的验证,只是对对象的当前实例进行操作。

享受吧! ;)

【讨论】:

非常感谢!!我已经被这个问题困扰了一个多星期。虽然我使用的是 Xamarin Android (C#),但您的解决方案运行良好!【参考方案5】:

我遇到了这个问题,在我的 android 日志中发现我的硬件加速没有打开。在我的 AndroidManifest 中打开它后,我多次显示地图不再是问题。我使用的是 x86 模拟器。

【讨论】:

【参考方案6】:

经过大量的点击和尝试,我终于设法在我的应用程序中完美地使用 MapView Fragment,结果如下所示:-

,这是我的 MapView 片段类:-

import android.content.Context;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Toast;

import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.GoogleMap.OnMapClickListener;
import com.google.android.gms.maps.MapFragment;
import com.google.android.gms.maps.model.BitmapDescriptorFactory;
import com.google.android.gms.maps.model.CameraPosition;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;
import com.serveroverload.yago.R;


public class HomeFragment extends Fragment implements LocationListener 
    // Class to do operations on the Map
    GoogleMap googleMap;
    private LocationManager locationManager;

    public static Fragment newInstance() 
        return new HomeFragment();
    

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

        // setuping locatiomanager to perfrom location related operations
        locationManager = (LocationManager) getActivity().getSystemService(
                Context.LOCATION_SERVICE);

        // Requesting locationmanager for location updates
        locationManager.requestLocationUpdates(
                LocationManager.NETWORK_PROVIDER, 1, 1, this);

        // To get map from MapFragment from layout
        googleMap = ((MapFragment) getActivity().getFragmentManager()
                .findFragmentById(R.id.map)).getMap();

        // To change the map type to Satellite
        // googleMap.setMapType(GoogleMap.MAP_TYPE_SATELLITE);

        // To show our current location in the map with dot
        // googleMap.setMyLocationEnabled(true);

        // To listen action whenever we click on the map
        googleMap.setOnMapClickListener(new OnMapClickListener() 

            @Override
            public void onMapClick(LatLng latLng) 
                /*
                 * LatLng:Class will give us selected position lattigude and
                 * longitude values
                 */
                Toast.makeText(getActivity(), latLng.toString(),
                        Toast.LENGTH_LONG).show();
            
        );

        changeMapMode(3);

        // googleMap.setSatellite(true);
        googleMap.setTrafficEnabled(true);
        googleMap.setBuildingsEnabled(true);
        googleMap.setMyLocationEnabled(true);

        return v;
    

    private void doZoom() 
        if (googleMap != null) 
            googleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(
                    new LatLng(18.520430, 73.856744), 17));
        
    

    private void changeMapMode(int mapMode) 

        if (googleMap != null) 
            switch (mapMode) 
            case 0:
                googleMap.setMapType(GoogleMap.MAP_TYPE_NONE);
                break;

            case 1:
                googleMap.setMapType(GoogleMap.MAP_TYPE_NORMAL);
                break;

            case 2:
                googleMap.setMapType(GoogleMap.MAP_TYPE_SATELLITE);
                break;

            case 3:
                googleMap.setMapType(GoogleMap.MAP_TYPE_TERRAIN);
                break;

            case 4:
                googleMap.setMapType(GoogleMap.MAP_TYPE_HYBRID);
                break;

            default:
                break;
            
        
    

    private void createMarker(double latitude, double longitude) 
        // double latitude = 17.385044;
        // double longitude = 78.486671;

        // lets place some 10 random markers
        for (int i = 0; i < 10; i++) 
            // random latitude and logitude
            double[] randomLocation = createRandLocation(latitude, longitude);

            // Adding a marker
            MarkerOptions marker = new MarkerOptions().position(
                    new LatLng(randomLocation[0], randomLocation[1])).title(
                    "Hello Maps " + i);

            Log.e("Random", "> " + randomLocation[0] + ", " + randomLocation[1]);

            // changing marker color
            if (i == 0)
                marker.icon(BitmapDescriptorFactory
                        .defaultMarker(BitmapDescriptorFactory.HUE_AZURE));
            if (i == 1)
                marker.icon(BitmapDescriptorFactory
                        .defaultMarker(BitmapDescriptorFactory.HUE_BLUE));
            if (i == 2)
                marker.icon(BitmapDescriptorFactory
                        .defaultMarker(BitmapDescriptorFactory.HUE_CYAN));
            if (i == 3)
                marker.icon(BitmapDescriptorFactory
                        .defaultMarker(BitmapDescriptorFactory.HUE_GREEN));
            if (i == 4)
                marker.icon(BitmapDescriptorFactory
                        .defaultMarker(BitmapDescriptorFactory.HUE_MAGENTA));
            if (i == 5)
                marker.icon(BitmapDescriptorFactory
                        .defaultMarker(BitmapDescriptorFactory.HUE_ORANGE));
            if (i == 6)
                marker.icon(BitmapDescriptorFactory
                        .defaultMarker(BitmapDescriptorFactory.HUE_RED));
            if (i == 7)
                marker.icon(BitmapDescriptorFactory
                        .defaultMarker(BitmapDescriptorFactory.HUE_ROSE));
            if (i == 8)
                marker.icon(BitmapDescriptorFactory
                        .defaultMarker(BitmapDescriptorFactory.HUE_VIOLET));
            if (i == 9)
                marker.icon(BitmapDescriptorFactory
                        .defaultMarker(BitmapDescriptorFactory.HUE_YELLOW));

            googleMap.addMarker(marker);

            // Move the camera to last position with a zoom level
            if (i == 9) 
                CameraPosition cameraPosition = new CameraPosition.Builder()
                        .target(new LatLng(randomLocation[0], randomLocation[1]))
                        .zoom(15).build();

                googleMap.animateCamera(CameraUpdateFactory
                        .newCameraPosition(cameraPosition));
            
        

    

    /*
     * creating random postion around a location for testing purpose only
     */
    private double[] createRandLocation(double latitude, double longitude) 

        return new double[]  latitude + ((Math.random() - 0.5) / 500),
                longitude + ((Math.random() - 0.5) / 500),
                150 + ((Math.random() - 0.5) * 10) ;
    

    @Override
    public void onLocationChanged(Location location) 

        if (null != googleMap) 
            // To get lattitude value from location object
            double latti = location.getLatitude();
            // To get longitude value from location object
            double longi = location.getLongitude();

            // To hold lattitude and longitude values
            LatLng position = new LatLng(latti, longi);

            createMarker(latti, longi);

            // Creating object to pass our current location to the map
            MarkerOptions markerOptions = new MarkerOptions();
            // To store current location in the markeroptions object
            markerOptions.position(position);

            // Zooming to our current location with zoom level 17.0f
            googleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(position,
                    17f));

            // adding markeroptions class object to the map to show our current
            // location in the map with help of default marker
            googleMap.addMarker(markerOptions);
        

    

    @Override
    public void onStatusChanged(String provider, int status, Bundle extras) 
        // TODO Auto-generated method stub

    

    @Override
    public void onProviderEnabled(String provider) 
        // TODO Auto-generated method stub

    

    @Override
    public void onProviderDisabled(String provider) 
        // TODO Auto-generated method stub

    

    @Override
    public void onDestroyView() 
        // TODO Auto-generated method stub
        super.onDestroyView();

        locationManager.removeUpdates(this);

        android.app.Fragment fragment = getActivity().getFragmentManager()
                .findFragmentById(R.id.map);
        if (null != fragment) 
            android.app.FragmentTransaction ft = getActivity()
                    .getFragmentManager().beginTransaction();
            ft.remove(fragment);
            ft.commit();
        
    



我的 Xml 文件如下所示:-

<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/map"
    android:name="com.google.android.gms.maps.MapFragment"
    android:layout_
    android:layout_ />

需要注意的最重要的一点是,不要将 app.Fragment 与 v4.Fragments 混合使用,否则应用程序会严重崩溃。

如您所见,我使用 app.Fragment 附加和删除我的 MapView 片段

希望对大家有所帮助

【讨论】:

您是否设法在地图视图中添加了“我的位置”按钮?并实时高亮当前用户位置?【参考方案7】:

我尝试了这里提出的各种解决方案,恕我直言,最好的一个是 MapView。无论如何,我找到了另一种可以满足您需求的解决方案(或者可能不)。

我的SupportMapFragment 包含在带有 3 个标签的 ViewPager+FragmentPagerAdapter 中。所以我只是将 ViewPager 配置为永远不会破坏 SupportMapFragment 所在的选项卡。

viewPager.setOffScreenPageLimit(2);
viewPager.setAdapter(...);

通过此调用,ViewPager 将始终在当前页面之后维护两页,在当前页面之前维护两页,因此我的三个选项卡都不会被销毁/重新创建。

问题解决了:)

注意内存消耗会增加

【讨论】:

非常感谢。我有 3 个片段的视图寻呼机,这正是我需要的【参考方案8】:
private MainActivity mainActObj;

@Override
public void onCreate(Bundle savedInstanceState) 
    super.onCreate(savedInstanceState);
    mainActObj = getMainActivity();


@SuppressWarnings("unchecked")
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) 

    if (mainActObj.mapView == null) 
        return mainActObj.mapView = inflater.inflate(R.layout.fragment_map,
                null);
    

    else 
        ViewGroup parent = (ViewGroup) mainActObj.mapView.getParent();
        if (parent != null) 
            parent.removeView(mainActObj.mapView);
        

        try 
            return mainActObj.mapView = inflater.inflate(
                    R.layout.fragment_map, container, false);
         catch (InflateException except) 
            return mainActObj.mapView;
        
    


【讨论】:

【参考方案9】:

试试这个代码

  @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) 
         finder = new LocationFinder(getActivity());

             view = inflater.inflate(R.layout.fragment_secondfragement, container, false);



                        initMap();

        
      //  getLocation();
        return view;

    


    public void initMap()

        if (map == null) 
            mapFragment = (SupportMapFragment) getChildFragmentManager()
                    .findFragmentById(R.id.map);
        

        map = mapFragment.getMap();
        map.setMyLocationEnabled(true);
        map.getUiSettings().setMyLocationButtonEnabled(true);

    

【讨论】:

【参考方案10】:

我有同样的问题并且通过动态创建谷歌地图解决了。你要做的是创建一个扩展SupportMapFragment的类班级。

此方法适用于 gingerbread to lollipop嵌套片段,因为它会动态创建地图,因此不必担心删除片段或类似的东西.

第一步:

public class DynamicMapFragment extends SupportMapFragment 

    public GoogleMap googleMap;
    public View mOriginalContentView;
    public static int statusGooglePlayService;    

    @Override
    public void onCreate(Bundle arg0) 
        super.onCreate(arg0);
    

    @Override
    public View onCreateView(LayoutInflater mInflater, ViewGroup parent,
            Bundle arg2) 

        mOriginalContentView = super.onCreateView(mInflater, parent, arg2);

       //this is for getting height of the phone screen
        DisplayMetrics displaymetrics = new DisplayMetrics();
        getActivity().getWindowManager().getDefaultDisplay()
                .getMetrics(displaymetrics);
        int height = displaymetrics.heightPixels;

        //Here you can define the height of the map as you desire
        FrameLayout.LayoutParams parentLayout = new FrameLayout.LayoutParams(
                FrameLayout.LayoutParams.MATCH_PARENT, height / 3);

        mOriginalContentView.setLayoutParams(parentLayout);
        return mOriginalContentView;
    

    @Override
    public View getView() 
        return mOriginalContentView;
    

    @Override
    public void onInflate(Activity arg0, AttributeSet arg1, Bundle arg2) 
        super.onInflate(arg0, arg1, arg2);
    

    @Override
    public void onActivityCreated(Bundle savedInstanceState) 
        super.onActivityCreated(savedInstanceState);
        googleMap = getMap();

        statusGooglePlayService = GooglePlayServicesUtil
                .isGooglePlayServicesAvailable(getActivity());
        if (statusGooglePlayService == ConnectionResult.SUCCESS) 
            if (googleMap != null) 
                // do whatever you want to do with map
            
         else 
            Dialog dialog = GooglePlayServicesUtil.getErrorDialog(
                    statusGooglePlayService, getActivity(), -1);
            dialog.show();
        
    


然后从Activity中调用上面创建的类,Fragment像这样:

第二步:

//Calling the method from a fragment
private void createMap(View rootView) 
        FrameLayout mapLayout = (FrameLayout)rootView.findViewById(R.id.location_map);
        FragmentTransaction mTransaction = getActivity()
                .getSupportFragmentManager().beginTransaction();
        SupportMapFragment mFRaFragment = new DynamicMapFragment();
        mTransaction.add(mapLayout.getId(), mFRaFragment);
        mTransaction.commit();

        try 
            MapsInitializer.initialize(activity);
         catch (Exception e) 
            e.printStackTrace();
        
    

您必须添加 Framelayout 的片段的 XML 布局 地图

的片段

第三步:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_
    android:layout_
    android:orientation="vertical" >



    <FrameLayout
        android:id="@+id/location_map"
        android:layout_
        android:layout_
        android:layout_weight="0" />

      <!--  You can add any other view also whatever you want to add 

      <Button
        android:layout_
        android:layout_wrap_content""
        android:layout_weight="0" />    -->

</LinearLayout>

【讨论】:

嗨,你能看看我的问题吗,它与你解释的类似,但对我不起作用。将是一个很大的恩惠。这是链接:-- ***.com/questions/32240138/…【参考方案11】:

只要穿上 onCreateView

if (view != null) 
        ViewGroup parent = (ViewGroup) view.getParent();
        if (parent != null)
            parent.removeView(view);
    

view = inflater.inflate(R.layout.map, container, false);

【讨论】:

以上是关于第二次打开 SupportMapFragment 时出错的主要内容,如果未能解决你的问题,请参考以下文章

为啥第二次不打开引导模式对话框?

用迅雷下载WORD压缩文件,首次成,第二次下载,却经常出现PHP文件,打开不了,是啥原因

Thinkphp3.2关闭调试模式以后第二次打开页面就会出现报错,请问一般问题在哪里?怎么解决?

pyqt4 - singleapplication - 调出原始窗口以尝试第二次打开应用程序

如何以 ShowDialog() 形式打开表单;我第一次打开表单但 Show();我第二次打开同一个表格

Excel文件第一次双击打不开,退出后第二次双击就能打开。