6

我正在使用选项卡创建一个应用程序,并且我在其中一个选项卡中有地图,当我从它打开地图时工作正常,当我访问其他一些选项卡时它也工作正常,但是当我回到地图选项卡应用程序崩溃时有这个错误。

04-09 14:10:43.866: E/AndroidRuntime(28184): android.view.InflateException: Binary XML file line #42: Error inflating class fragment
04-09 14:10:43.866: E/AndroidRuntime(28184):    at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:697)
04-09 14:10:43.866: E/AndroidRuntime(28184):    at android.view.LayoutInflater.rInflate(LayoutInflater.java:739)
04-09 14:10:43.866: E/AndroidRuntime(28184):    at android.view.LayoutInflater.rInflate(LayoutInflater.java:742)
04-09 14:10:43.866: E/AndroidRuntime(28184):    at android.view.LayoutInflater.inflate(LayoutInflater.java:489)
04-09 14:10:43.866: E/AndroidRuntime(28184):    at android.view.LayoutInflater.inflate(LayoutInflater.java:396)
04-09 14:10:43.866: E/AndroidRuntime(28184):    at com.research.fragmenttabstudy.tabA.TodaysDealLocation.onCreateView(TodaysDealLocation.java:43)

这是我的代码:

public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        Log.d("err","todaysdeal location");
        Log.d("err","todaysdeal location"+inflater.toString()+" "+container.toString()+" ");
        super.onCreateView(inflater, container, savedInstanceState); 
//      map.clear();
        View view = inflater.inflate(R.layout.todays_deal_location, container,
                false);

        Log.d("err",view.toString());
        back = (ImageView) view.findViewById(R.id.list);
        back.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {

                // TODO Auto-generated method stub
                // Constants.passcode_chk = 0;
                // finish();
                mActivity.popFragments();
            }
        });
        return view;
    }
    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        map = ((SupportMapFragment) getFragmentManager().findFragmentById(
                R.id.mapp)).getMap();
        map.setMapType(GoogleMap.MAP_TYPE_NORMAL);

    }

xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:src="@drawable/topbar" />

    <!-- <ImageView -->
    <!-- android:id="@+id/deallistmenu" -->
    <!-- android:layout_width="wrap_content" -->
    <!-- android:layout_height="wrap_content" -->
    <!-- android:layout_marginLeft="5dp" -->
    <!-- android:layout_marginTop="9dp" -->
    <!-- android:src="@drawable/deallist_menubtn" /> -->

    <ImageView
        android:id="@+id/list"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_marginRight="7dp"
        android:layout_marginTop="7dp"
        android:src="@drawable/map_list" />

    <RelativeLayout
        android:id="@+id/frameLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/imageView1"
        android:layout_marginTop="-4.8dp" >

        <!-- box layout.................................................................... -->


        <!-- box layout.................................................................... -->

        <fragment
            android:id="@+id/mapp"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_below="@+id/tv_location"
            android:name="com.google.android.gms.maps.SupportMapFragment" />

        <!-- <ZoomControls -->
        <!-- android:id="@+id/zoomControls" -->
        <!-- android:layout_width="wrap_content" -->
        <!-- android:layout_height="wrap_content" -->
        <!-- android:layout_alignParentBottom="true" -->
        <!-- android:layout_alignParentLeft="true" -->
        <!-- android:layout_marginBottom="30dp" -->
        <!-- android:layout_marginLeft="100dp" /> -->

    </RelativeLayout>

    <TextView
        android:id="@+id/barTitle"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:gravity="center"
        android:lines="1"
        android:maxLines="1"
        android:paddingLeft="50dip"
        android:paddingRight="55dip"
        android:singleLine="true"
        android:text=""
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textColor="@android:color/white"
        android:textSize="18dp" />

</RelativeLayout>
4

5 回答 5

18

您的问题是您已经在 XML 中声明了 google maps v2 片段,因此每次膨胀 XML 时都会生成一个新片段。但是,片段的 id 在 XML 中是硬编码的,因此它会尝试使用与已经运行的片段相同的 id 创建新片段。两个正在运行的片段不能具有相同的 id,因此应用程序崩溃。

解决此问题的最佳方法是以编程方式制作地图片段。可以在 Google 地图示例项目的 ProgrammaticDemoActivity.java 部分中找到一个很好的示例。

但是,如果由于某种原因您必须在 XML 中声明您的片段,您可以通过在离开视图时杀死旧的地图片段来使其工作,以便可以创建新的片段。

您可以执行以下操作:

private void killOldMap() {
    SupportMapFragment mapFragment = ((SupportMapFragment) getSherlockActivity()
            .getSupportFragmentManager().findFragmentById(R.id.map));

    if(mapFragment != null) {
        FragmentManager fM = getFragmentManager();
        fM.beginTransaction().remove(mapFragment).commit();
    }

}

然后调用它onDetach()onDestroyView()确保旧地图被杀死。

正如您所看到的,这是一种 hack,您最好只是以编程方式制作您的应用程序,而不是使用 XML。

于 2013-07-01T13:43:32.800 回答
2

尝试这个...

从 onDetach() 和 onDestroyView() 调用此函数以终止现有片段事务。

private void commitMaps() {
    if (null != mapFragment) {
        getFragmentManager().beginTransaction().remove(mapFragment).commitAllowingStateLoss();
    }
}

如果您 commit() 存在地图事务,有时您会收到“IllegalStateException:onSaveInstanceState 后无法执行此操作”。为避免此异常,您应在删除现有事务时使用 commitAllowingStateLoss()。

commit() 和 commitAllowingStateLoss() 的区别

于 2015-08-17T06:38:34.733 回答
0

确保您的活动扩展了片段活动并替换

map=((SupportMapFragment)getSupportFragmentManager().findFragmentById(R.id.map)).getMap();

并删除“ android:layout_below="@+id/tv_location" because it is inside relative layout

去吧,让我知道。

于 2013-04-09T11:00:32.047 回答
0

已经创建了一个地图片段,当您尝试返回地图页面时,它会尝试在其顶部创建另一个片段。下面的代码对我来说终于可以正常工作了:

XML:

<fragment
        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"
        android:id="@+id/map"
        android:name="com.google.android.gms.maps.SupportMapFragment"/>

请注意,我使用了 SupportMapFragment 而不是 MapFragment。

爪哇:

 @Override
public void onDestroyView() {
    super.onDestroyView();
    Fragment f = getActivity().getSupportFragmentManager().findFragmentById(R.id.map);
    if (f != null)
        getFragmentManager().beginTransaction().remove(f).commit();
}
于 2015-11-24T17:54:19.957 回答
-1

我在您提供的代码中看到的第一个问题是这一行:

map = ((SupportMapFragment) getFragmentManager().findFragmentById(R.id.mapp)).getMap();

您试图SupportMapFragment使用通常的FragmentManager. 这是错误的。要获取SupportMapFragment对象,您必须SupportFragmentManager像这样使用:

map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.mapp)).getMap();

但我的猜测是,你现在遇到的问题还不是源于这个错误。我认为您以错误的方式引用google-play-services图书馆的图书馆。google-support-v4

你可以看看我写的这篇关于如何添加Google Map API V2到你的应用程序的博客文章:

谷歌地图 API V2

更新:

如果您的最小 SDK 为 11,那么您可以将片段更改为以下代码:

<fragment
        android:id="@+id/mapp"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/tv_location"
        android:name="com.google.android.gms.maps.MapFragment" />
于 2013-04-09T09:00:42.433 回答