Android - SupportMapFragment 与 GoogleMaps API 2.0 给出 IllegalArgumentException

Posted

技术标签:

【中文标题】Android - SupportMapFragment 与 GoogleMaps API 2.0 给出 IllegalArgumentException【英文标题】:Android - SupportMapFragment with GoogleMaps API 2.0 giving IllegalArgumentException 【发布时间】:2012-12-16 22:56:53 【问题描述】:

我正在尝试使用为 android 提供的最新 Map API 2.0。我正在使用支持库,因为我想支持 Android 2.2。以下是我的代码:

主要活动类

public class MainActivity extends FragmentActivity 

    public FragmentManager fManager ;

    @Override
    protected void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        fManager = getSupportFragmentManager();
        Button showMapButton = (Button) findViewById(R.id.showMapButton);
        showMapButton.setOnClickListener(new OnClickListener() 
            @Override
            public void onClick(View v) 
                loadMapFragment();
            
        );
    

    private void loadMapFragment() 
        MapPageFragment plotterFragment = new MapPageFragment();
        FragmentTransaction ft = fManager.beginTransaction();
        ft.replace(R.id.allFragmentsFrameLayout, plotterFragment);
        ft.addToBackStack(null);
        ft.commit();
    

    @Override
    public boolean onCreateOptionsMenu(Menu menu) 
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    

主 Activity 布局文件

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_
    android:layout_
    tools:context=".MainActivity" >

    <Button
        android:id="@+id/showMapButton"
        android:layout_
        android:layout_
        android:text="Show Map"
        android:layout_marginLeft="30dp"
        android:layout_marginRight="30dp"
        android:layout_marginTop="30dp"
        android:layout_alignParentTop="true" />


    <FrameLayout
        android:id="@+id/allFragmentsFrameLayout"
        android:layout_
        android:layout_
        android:layout_alignParentTop="true">
        <!-- Put fragments dynamically -->
    </FrameLayout>

</RelativeLayout>

地图片段类

public class MapPageFragment extends SupportMapFragment 

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

    @Override
    public void onViewCreated(View view, Bundle savedInstanceState) 
        super.onViewCreated(view, savedInstanceState);
    

地图片段布局

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

Android 清单文件

<?xml version="1.0" encoding="utf-8"?>
<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.mapfragmentexample"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="16" />

    <permission
        android:name="com.plotter.permission.MAPS_RECEIVE"
        android:protectionLevel="signature"/>
    <uses-permission android:name="com.plotter.permission.MAPS_RECEIVE"/>
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>

    <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="AIzaSyA5FtIeLQ1gGUihZIZPQVi3Yz_0l4NG9PY"/>
    </application>

</manifest>

第一次一切正常。即当我点击Show Map 按钮时,地图片段会被加载并显示地图。当我按下返回按钮时,地图片段被卸载,我可以再次看到Show Map按钮。

当我再次按下Show Map 按钮时遇到问题。我收到以下错误:

FATAL EXCEPTION: main
android.view.InflateException: Binary XML file line #2: Error inflating class fragment
    at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:699)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:468)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:397)
    at com.mapfragmentexample.MapPageFragment.onCreateView(MapPageFragment.java:17)
    at android.support.v4.app.Fragment.performCreateView(Fragment.java:1460)
    at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:911)
    at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:1088)
    at android.support.v4.app.BackStackRecord.run(BackStackRecord.java:682)
    at android.support.v4.app.FragmentManagerImpl.execPendingActions(FragmentManager.java:1444)
    at android.support.v4.app.FragmentManagerImpl$1.run(FragmentManager.java:429)
    at android.os.Handler.handleCallback(Handler.java:605)
    at android.os.Handler.dispatchMessage(Handler.java:92)
    at android.os.Looper.loop(Looper.java:137)
    at android.app.ActivityThread.main(ActivityThread.java:4503)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:511)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:809)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:576)
    at dalvik.system.NativeStart.main(Native Method)

Caused by: java.lang.IllegalArgumentException: Binary XML file line #2: 
       Duplicate id 0x7f040006, tag null, or parent id 0x0 with another fragment 
       for com.google.android.gms.maps.SupportMapFragment
    at android.support.v4.app.FragmentActivity.onCreateView(FragmentActivity.java:285)
    at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:671)
    ... 18 more

我没有找到错误或遗漏任何东西的地方。

【问题讨论】:

您的问题解决了吗?我面临同样的事情 @Natalia 我也有同样的问题...如果你解决了请告诉我 @Hades 我发布了答案 @Natalia 我认为你不应该使用它:) @Hades 如果您知道更好的方法,我将不胜感激 【参考方案1】:

如果您删除onDestroyView() 中的所有嵌套片段,您可以解决此问题。不知道这是否是一个合适的解决方案。

public void onDestroyView() 
   super.onDestroyView(); 
   Fragment fragment = (getFragmentManager().findFragmentById(R.id.map));   
   FragmentTransaction ft = getActivity().getSupportFragmentManager().beginTransaction();
   ft.remove(fragment);
   ft.commit();

并像往常一样在onCreateView()中为它们充气

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

【讨论】:

是的,这是正确的解决方案,在 SherlockFragment 和 JW-ViewPagerIndicator 中为我工作。谢谢.. 除非您从 backStack 进行向后导航和加载片段,否则它非常有效。每次按下后退按钮时,我都添加了“hack”以执行与上述相同的操作。 添加 ft.commitAllowingStateLoss();如果你也想处理方向。 这不是一个合适的解决方案。 @JasonCrosby 通过代码创建片段。请参阅下面的答案。【参考方案2】:

您需要使用 getChildFragmentManager() 来添加 SupportMapFragment,而不是通过 xml。

“为什么”见官方文档:http://developer.android.com/about/versions/android-4.2.html#NestedFragments

在这里看看我的回答:https://***.com/a/15512285/2183804

【讨论】:

我目前正在使用 Natalia 的解决方案,我想试试你的建议。谢谢【参考方案3】:

当布局包含片段时,您不能将布局扩展为片段。仅当动态添加到片段时才支持嵌套片段。 More detail here!

【讨论】:

【参考方案4】:

使用此解决方案(与其他类似):

public void onDestroyView() 

    FragmentManager fm = getActivity().getSupportFragmentManager();
    Fragment fragment = (fm.findFragmentById(R.id.map));

    if (fragment.isResumed()) 
        FragmentTransaction ft = fm.beginTransaction();
        ft.remove(fragment);
        ft.commit();
    
    super.onDestroyView();

我在使用 if (fragment.isResumed) 之前遇到了问题。

【讨论】:

【参考方案5】:

我在 JakeWhartonViewPagerIndicatore 和 SherlockFragments 中遇到了同样的问题。这是已解决问题的示例 TestFragment,感谢 Natalia 提供上述解决方案。你的片段可能和我的有点不同。

参考:Making ActionBarSherlock and ViewPagerIndicator play nice

祝你好运..!!

package com.example.vpiabstest;

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentTransaction;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

import com.actionbarsherlock.app.SherlockFragment;

public class TestFragment extends SherlockFragment 
    private String mContent = "???";
    private String text;
    private static final String KEY_TAB_NUM = "key.tab.num";

    public static TestFragment newInstance(String text) 
        TestFragment fragment = new TestFragment();

        // Supply num input as an argument.
        Bundle args = new Bundle();
        args.putString(KEY_TAB_NUM, text);
        fragment.setArguments(args);


        return fragment;
    

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) 
        text = getString(R.string.tab_page_num) + mContent;

        View view = null;

        if(text.contains("2")) 
            view = inflater.inflate(R.layout.pinpoints_list, null);
         else if(text.contains("1")) 
            view = inflater.inflate(R.layout.main_fragment_activity, null);
         else 
            view = inflater.inflate(R.layout.activity_main, null);
            ((TextView)view.findViewById(R.id.text)).setText(text);
        


        return view;
    

    @Override
    public void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        mContent =  getArguments() != null ? getArguments().getString(KEY_TAB_NUM) : "???";
    

    public void onDestroyView() 
        super.onDestroyView();

        // Your Programing skills goes here

        if(text == null || !text.contains("1")) 
            return;
        

        // Do Not Miss this
        try 
            Fragment fragment = (getFragmentManager().findFragmentById(R.id.map_fragment));  
            FragmentTransaction ft = getActivity().getSupportFragmentManager().beginTransaction();
            ft.remove(fragment);
            ft.commit();
         catch (Exception e) 
            e.printStackTrace();
        
    

【讨论】:

【参考方案6】:

当我们尝试加载时,在您的活动的onCreate() 原因中使用dialog.SetContentView() 方法。

再次对话框,它只加载对话框而不是整个活动生命周期,并导致它出现重复 id 异常。

试试看。

【讨论】:

【参考方案7】:

试试这个

地图片段布局

<?xml version="1.0" encoding="utf-8"?>
<fragment
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:layout_
android:layout_
map:uiCompass="true"
map:mapType= "normal"
map:uiRotateGestures="true"
map:uiScrollGestures="true"
map:uiTiltGestures="true"
map:uiZoomControls="true"
map:uiZoomGestures="true" 
tools:context="the.package.name.of.mappagefragment.MapPageFragment" />

地图片段类

public class MapPageFragment extends SupportMapFragment 


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

    View rootView = super.onCreateView(inflater, container, savedInstanceState);
    if (rootView == null)
    
        rootView = inflater.inflate(R.layout.map_fragment_layout, container, false);
    
    return rootView;


@Override
public void onViewCreated(View view, Bundle savedInstanceState) 

    super.onViewCreated(view, savedInstanceState);


【讨论】:

【参考方案8】:

我使用了 Natalia 响应,但有时会破坏应用程序。 使用这个,它可以完美地工作而不会损坏。

@Override
public void onDestroyView() 

  try
    FragmentTransaction transaction = getSupportFragmentManager()
            .beginTransaction();

    transaction.remove(nestedFragment);

    transaction.commit();
  catch(Exception e)
  

    super.onDestroyView();

https://***.com/a/7953801/3364157

【讨论】:

【参考方案9】:
Fragment fragment = (getChildFragmentManager().findFragmentById(R.id.mapview));
FragmentTransaction ft = getActivity().getSupportFragmentManager().beginTransaction();
ft.remove(fragment);
ft.commit();

使用它可以节省一天的时间。

【讨论】:

【参考方案10】:

使用意图标志:

intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);

调用主要活动时。

【讨论】:

【参考方案11】:

我遇到了同样的问题。尝试添加...

android:name="com.mapfragmentexample.MapPageFragment"

...到布局文件中的fragment

【讨论】:

以上是关于Android - SupportMapFragment 与 GoogleMaps API 2.0 给出 IllegalArgumentException的主要内容,如果未能解决你的问题,请参考以下文章

Android 逆向Android 权限 ( Android 逆向中使用的 android.permission 权限 | Android 系统中的 Linux 用户权限 )

android 21 是啥版本

Android逆向-Android基础逆向(2-2)

【Android笔记】android Toast

图解Android - Android核心机制

Android游戏开发大全的目录