รหัสซ้ำ, แท็กเป็นโมฆะหรือรหัสหลักที่มีแฟรกเมนต์อื่นสำหรับ com.google.android.gms.maps.MapFragment


334

ฉันมีแอปพลิเคชั่นสามแท็บ

แต่ละแท็บมีไฟล์. xml สำหรับเลย์เอาต์ของตัวเอง main.xml มีแฟรกเมนต์แผนที่ของตัวเอง เป็นแอปที่แสดงขึ้นเมื่อแอปพลิเคชันเปิดตัวครั้งแรก

ทุกอย่างทำงานได้ดียกเว้นเมื่อฉันเปลี่ยนระหว่างแท็บ หากฉันพยายามเปลี่ยนกลับไปที่แท็บชิ้นส่วนแผนที่ฉันได้รับข้อผิดพลาดนี้ การสลับไปมาระหว่างแท็บอื่น ๆ ใช้งานได้ดี

มีอะไรผิดปกติที่นี่?

นี่คือคลาสหลักและ main.xml ของฉันรวมถึงคลาสที่เกี่ยวข้องที่ฉันใช้ (คุณจะพบบันทึกข้อผิดพลาดที่ด้านล่าง)

ชั้นหลัก

package com.nfc.demo;

import android.app.ActionBar;
import android.app.ActionBar.Tab;
import android.app.Activity;
import android.app.Fragment;
import android.app.FragmentTransaction;
import android.os.Bundle;
import android.widget.Toast;

public class NFCDemoActivity extends Activity {

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        ActionBar bar = getActionBar();
        bar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
        bar.setDisplayOptions(0, ActionBar.DISPLAY_SHOW_TITLE);

        bar.addTab(bar
                .newTab()
                .setText("Map")
                .setTabListener(
                        new TabListener<MapFragment>(this, "map",
                                MapFragment.class)));
        bar.addTab(bar
                .newTab()
                .setText("Settings")
                .setTabListener(
                        new TabListener<SettingsFragment>(this, "settings",
                                SettingsFragment.class)));
        bar.addTab(bar
                .newTab()
                .setText("About")
                .setTabListener(
                        new TabListener<AboutFragment>(this, "about",
                                AboutFragment.class)));

        if (savedInstanceState != null) {
            bar.setSelectedNavigationItem(savedInstanceState.getInt("tab", 0));
        }
        // setContentView(R.layout.main);

    }

    @Override
    protected void onSaveInstanceState(Bundle outState) {
        super.onSaveInstanceState(outState);
        outState.putInt("tab", getActionBar().getSelectedNavigationIndex());
    }

    public static class TabListener<T extends Fragment> implements
            ActionBar.TabListener {
        private final Activity mActivity;
        private final String mTag;
        private final Class<T> mClass;
        private final Bundle mArgs;
        private Fragment mFragment;

        public TabListener(Activity activity, String tag, Class<T> clz) {
            this(activity, tag, clz, null);
        }

        public TabListener(Activity activity, String tag, Class<T> clz,
                Bundle args) {
            mActivity = activity;
            mTag = tag;
            mClass = clz;
            mArgs = args;

            // Check to see if we already have a fragment for this tab,
            // probably from a previously saved state. If so, deactivate
            // it, because our initial state is that a tab isn't shown.
            mFragment = mActivity.getFragmentManager().findFragmentByTag(mTag);
            if (mFragment != null && !mFragment.isDetached()) {
                FragmentTransaction ft = mActivity.getFragmentManager()
                        .beginTransaction();
                ft.detach(mFragment);
                ft.commit();
            }
        }

        public void onTabSelected(Tab tab, FragmentTransaction ft) {
            if (mFragment == null) {
                mFragment = Fragment.instantiate(mActivity, mClass.getName(),
                        mArgs);
                ft.add(android.R.id.content, mFragment, mTag);
            } else {
                ft.attach(mFragment);
            }
        }

        public void onTabUnselected(Tab tab, FragmentTransaction ft) {
            if (mFragment != null) {
                ft.detach(mFragment);
            }
        }

        public void onTabReselected(Tab tab, FragmentTransaction ft) {
            Toast.makeText(mActivity, "Reselected!", Toast.LENGTH_SHORT)
                         .show();
        }
    }

}

main.xml

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

    <fragment
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/mapFragment"
        android:name="com.google.android.gms.maps.MapFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>

คลาสที่เกี่ยวข้อง (MapFragment.java)

package com.nfc.demo;

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class MapFragment extends Fragment {

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

    public void onDestroy() {
        super.onDestroy();
    }
}

ความผิดพลาด

android.view.InflateException: Binary XML file line #7: 
     Error inflating class fragment
   at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:704)
   at android.view.LayoutInflater.rInflate(LayoutInflater.java:746)
   at android.view.LayoutInflater.inflate(LayoutInflater.java:489)
   at android.view.LayoutInflater.inflate(LayoutInflater.java:396)
   at com.nfc.demo.MapFragment.onCreateView(MapFragment.java:15)
   at android.app.Fragment.performCreateView(Fragment.java:1695)
   at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:885)
   at android.app.FragmentManagerImpl.attachFragment(FragmentManager.java:1255)
   at android.app.BackStackRecord.run(BackStackRecord.java:672)
   at android.app.FragmentManagerImpl.execPendingActions(FragmentManager.java:1435)
   at android.app.FragmentManagerImpl$1.run(FragmentManager.java:441)
   at android.os.Handler.handleCallback(Handler.java:725)
   at android.os.Handler.dispatchMessage(Handler.java:92)
   at android.os.Looper.loop(Looper.java:137)
   at android.app.ActivityThread.main(ActivityThread.java:5039)
   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:793)
   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
   at dalvik.system.NativeStart.main(Native Method)

Caused by: java.lang.IllegalArgumentException: 
     Binary XML file line #7: Duplicate id 0x7f040005, tag null, or 
     parent id 0xffffffff with another fragment for 
     com.google.android.gms.maps.MapFragment
   at android.app.Activity.onCreateView(Activity.java:4722)
   at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:680)
   ... 19 more

ลองสิ่งนี้ - คืนค่า super.onCreateView (เติม, คอนเทนเนอร์, บันทึกไว้InstanceState); แทน super.onCreateView (inflater, container, saveInstanceState) กลับมา inflateinflate (R.layout.main, ภาชนะ, เท็จ);
Nik

คุณจะไม่เพิ่มส่วนที่คุณได้รับการบันทึกไว้เมื่อ InInStates ไม่เป็นโมฆะ
muyiou

ลองดูความคิดเห็นนี้ มันอาจช่วยคุณได้: stackoverflow.com/questions/15562416/…
Oleksandr

2
โปรดเปลี่ยนคำตอบที่ยอมรับได้! คุณเลือกคำตอบที่แย่มากซึ่งสร้างความจำรั่ว! คำตอบที่ถูกต้องคือ: stackoverflow.com/a/19815266/902276
Daniele Segato

คำตอบ:


400

คำตอบที่ Matt แนะนำให้ทำงาน แต่มันทำให้แผนที่ถูกสร้างใหม่และวาดใหม่ซึ่งไม่เป็นที่ต้องการเสมอไป หลังจากลองผิดลองถูกมากมายฉันพบวิธีแก้ปัญหาที่เหมาะกับฉัน:

private static View view;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    if (view != null) {
        ViewGroup parent = (ViewGroup) view.getParent();
        if (parent != null)
            parent.removeView(view);
    }
    try {
        view = inflater.inflate(R.layout.map, container, false);
    } catch (InflateException e) {
        /* map is already there, just return view as it is */
    }
    return view;
}

สำหรับการวัดที่ดีนี่คือ "map.xml" (R.layout.map) พร้อม R.id.mapFragment (android: id = "@ + id / mapFragment"):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mapLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <fragment xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/mapFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.google.android.gms.maps.SupportMapFragment" />
</LinearLayout>

ฉันหวังว่านี่จะช่วยได้ แต่ฉันไม่สามารถรับประกันได้ว่ามันจะไม่มีผลกระทบใด ๆ

แก้ไข:มีผลข้างเคียงบางอย่างเช่นเมื่อออกจากแอปพลิเคชันและเริ่มต้นใหม่อีกครั้ง เนื่องจากแอปพลิเคชันไม่จำเป็นต้องปิดตัวลงอย่างสมบูรณ์ (แต่เพิ่งเข้าสู่โหมดสลีปในพื้นหลัง) รหัสก่อนหน้านี้ที่ฉันส่งจะล้มเหลวเมื่อรีสตาร์ทแอปพลิเคชัน ฉันได้อัปเดตโค้ดเป็นสิ่งที่ใช้ได้กับฉันทั้งการเข้าและออกจากแผนที่การออกและรีสตาร์ทแอปพลิเคชันฉันไม่พอใจบิตลองจับ แต่ดูเหมือนจะทำงานได้ดีพอ เมื่อดูที่การติดตามสแต็กมันเกิดขึ้นกับฉันที่ฉันสามารถตรวจสอบได้ว่าแฟรกเมนต์แผนที่นั้นอยู่ใน FragmentManager หรือไม่ไม่จำเป็นต้องใช้บล็อกลองจับรหัสอัพเดต

การแก้ไขเพิ่มเติม:กลับกลายเป็นว่าคุณต้องการการทดลองใช้ เพียงแค่ตรวจสอบว่าส่วนของแผนที่ปรากฎว่าไม่ได้ทำงานได้ดีนัก Blergh


25
นี่เป็นคำตอบที่ผิด -1! คุณกำลังรั่วกิจกรรมโดยใช้ตัวแก้ไขแบบคงที่สำหรับมุมมอง สาเหตุที่แท้จริงของปัญหานี้อาจเป็นกิจกรรมที่รั่วไหลออกไปอีกซึ่งไม่สามารถรวบรวมขยะได้เนื่องจากคุณกำลังอ้างอิงที่ดีอยู่ ในกรณีที่มีการโยน InflateException คุณกำลังใช้มุมมองที่มีบริบทของกิจกรรมที่ถูกทำลาย! ดีกว่าค้นหาการรั่วไหลของหน่วยความจำอื่นในแอปของคุณซึ่งจะช่วยแก้ปัญหาทั้งหมด
tomrozb

1
ฉันเดาว่าเราสามารถใช้ WeakReference เพื่อหลีกเลี่ยงการรั่วไหลของหน่วยความจำได้หรือไม่
Desmond Lua

2
สิ่งนี้ใช้ได้กับฉันเช่นกัน +1 คุณไม่จำเป็นต้องใช้การอ้างอิงแบบคงที่ในการดู
Karol Żygłowicz

4
อย่าทำแบบนี้ !!! มันทำให้หน่วยความจำรั่ว เหตุผลเดียวที่ทำให้สิ่งนี้เกิดขึ้นเพราะคุณกำลังขยายแฟรกเมนต์จาก XML ภายในแฟรกเมนต์อื่น คุณไม่ควรทำอย่างนั้น! คุณควรใช้ ChildFragmentManager และเพิ่มแฟรกเมนต์ใน onViewCreated ()!
Daniele Segato

1
ใช่นี่จะเป็นการรั่วไหลของกิจกรรม พบวิธีการแก้ปัญหาการทำงานในstackoverflow.com/a/27592123/683763 ความคิดที่จะลบด้วยตนเองSupportMapFragmentในonDestroyViewวิธีการ
ULazdins

277

ปัญหาคือสิ่งที่คุณพยายามทำไม่ควรทำ คุณไม่ควรพองตัวเศษเล็กเศษน้อยอื่น ๆ จากเอกสารของ Android :

หมายเหตุ: คุณไม่สามารถขยายเค้าโครงเข้าไปในส่วนได้เมื่อเค้าโครงนั้นมี <fragment> แฟรกเมนต์ที่ซ้อนกันได้รับการสนับสนุนก็ต่อเมื่อมีการเพิ่มในแฟรกเมนต์แบบไดนามิก

แม้ว่าคุณจะสามารถทำงานให้สำเร็จได้ด้วยแฮ็กที่นำเสนอที่นี่ฉันขอแนะนำให้คุณอย่าทำอย่างนั้น เป็นไปไม่ได้ที่จะแน่ใจว่าแฮ็คเหล่านี้จะจัดการสิ่งที่ Android OS ใหม่แต่ละเครื่องทำเมื่อคุณพยายามขยายเลย์เอาต์สำหรับแฟรกเมนต์ที่มีแฟรกเมนต์อื่นที่มีแฟรกเมนต์อื่น

วิธีเดียวที่ Android รองรับการเพิ่มแฟรกเมนต์ให้กับแฟรกเมนต์อื่นคือผ่านธุรกรรมจากตัวจัดการแฟรกเมนต์ชายด์

เพียงเปลี่ยนเลย์เอาต์ XML ของคุณเป็นที่ว่างเปล่า (เพิ่ม ID หากต้องการ):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mapFragmentContainer"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
</LinearLayout>

จากนั้นในonViewCreated(View view, @Nullable Bundle savedInstanceState)วิธีการแยกส่วน:

@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
    super.onViewCreated(view, savedInstanceState);
    FragmentManager fm = getChildFragmentManager();
    SupportMapFragment mapFragment = (SupportMapFragment) fm.findFragmentByTag("mapFragment");
    if (mapFragment == null) {
        mapFragment = new SupportMapFragment();
        FragmentTransaction ft = fm.beginTransaction();
        ft.add(R.id.mapFragmentContainer, mapFragment, "mapFragment");
        ft.commit();
        fm.executePendingTransactions();
    }
    mapFragment.getMapAsync(callback);
}

4
ดูstackoverflow.com/questions/13733299/…สำหรับตัวอย่างของการสร้างชิ้นส่วนแผนที่โดยโปรแกรมและเริ่มต้นแผนที่
Kristopher Johnson

1
โปรดดูstackoverflow.com/questions/19239175/…สำหรับวิธีแก้ปัญหาสำหรับข้อผิดพลาดที่ชัดเจนในการสนับสนุนส่วนย่อยของเด็ก
Kristopher Johnson

ฉันพบปัญหานี้4.3เมื่อใช้การSupportMapFragmentกำหนดใน XML การสร้างชิ้นส่วนแบบไดนามิกและฉีดลงในมุมมองคอนเทนเนอร์แก้ไขปัญหาได้ ดูคำตอบ SOนี้
theblang

คำตอบที่มีประโยชน์มาก เราจะโทรกลับไปยังฟังก์ชั่นหลักของ onCreate () ได้อย่างไร?
Utopia

2
ตามเอกสารให้ใช้SupportMapFragment.newInstance(); developers.google.com/maps/documentation/android-api/map
Jemshit Iskenderov

178

ฉันมีปัญหาเดียวกันและสามารถแก้ไขได้ด้วยการลบMapFragmentในonDestroy()วิธีการFragmentเรียนด้วยตนเอง นี่คือรหัสที่ใช้งานและอ้างอิงMapFragmentตาม ID ใน XML:

@Override
public void onDestroyView() {
    super.onDestroyView();
    MapFragment f = (MapFragment) getFragmentManager()
                                         .findFragmentById(R.id.map);
    if (f != null) 
        getFragmentManager().beginTransaction().remove(f).commit();
}

หากคุณไม่ลบออกMapFragmentด้วยตนเองมันจะไปไหนมาไหนเพื่อไม่ให้เสียค่าใช้จ่ายทรัพยากรจำนวนมากในการสร้าง / แสดงมุมมองแผนที่อีกครั้ง ดูเหมือนว่าการรักษาต้นแบบMapViewนั้นยอดเยี่ยมสำหรับการสลับไปมาระหว่างแท็บ แต่เมื่อใช้ในแฟรกเมนต์ลักษณะการทำงานนี้ทำให้เกิดการซ้ำซ้อนMapViewที่จะสร้างขึ้นใหม่แต่ละรายการMapFragmentด้วย ID เดียวกัน วิธีการแก้ปัญหาคือการลบแผนที่ด้วยตนเองMapFragmentและสร้างแผนที่ต้นแบบใหม่ทุกครั้งที่แฟรกเมนต์ขยายตัว

ฉันยังสังเกตเห็นสิ่งนี้ในคำตอบอื่น [ 1 ]


มันทำให้แอปพังเมื่อคลิกที่ปุ่มโฮมของอุปกรณ์ด้วย "อย่าเก็บกิจกรรม" ในตัวเลือกนักพัฒนา
กรกฎาคม

24
สิ่งนี้ใช้ได้ผล แต่ถ้าฉันหมุนหน้าจอแอปของฉันก็จะขัดข้องด้วยข้อยกเว้นนี้: เกิดจาก: java.lang.IllegalStateException: ไม่สามารถทำการกระทำนี้หลังจาก onSaveInstanceState
jramoyo

1
สำหรับผู้ที่อาจสนใจคุณสามารถกำจัดข้อยกเว้นที่เกิดจากการหมุนหน้าจอโดยจัดเก็บการวางแนว inital ในตัวสร้างของส่วนและเรียกการทำธุรกรรมดังกล่าวข้างต้นเฉพาะในกรณีที่ไม่มีการเปลี่ยนแปลงการวางแนว หากมีการเปลี่ยนแปลงไม่จำเป็นต้องต่อสู้กับ ID ซ้ำกันเนื่องจากไม่ได้อยู่ที่นั่นเมื่อสร้างมุมมองใหม่หลังจากหมุน ฉันสามารถแก้ไขคำตอบและให้ข้อมูลโค้ดได้หาก Matt ไม่สนใจ
สแตน

1
หืมมมเศษชิ้นส่วนแผนที่ไม่ได้ถูกลบออกไป ฉันจะต้องทำอะไรผิดพลาด แต่ถ้าฉันเรียกใช้ getActivity () ไม่มีใครมีความคิดใด ๆ ว่าทำไม? (ฉันแทนที่ getFragManager ด้วย getSupportFragManager)
Daniel Wilson

10
commitAllowingStateLoss จะหลีกเลี่ยงข้อยกเว้น IllegalStateException
HéctorJúdez Sapena

22

นี่คือคำตอบของฉัน:

1, สร้างเค้าโครง xml ดังนี้:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>

2 ในชั้น Fragment เพิ่มแผนที่ google โดยทางโปรแกรม

import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.SupportMapFragment;
import android.app.Activity;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentTransaction;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

/**
 * A simple {@link android.support.v4.app.Fragment} subclass. Activities that
 * contain this fragment must implement the
 * {@link MapFragment.OnFragmentInteractionListener} interface to handle
 * interaction events. Use the {@link MapFragment#newInstance} factory method to
 * create an instance of this fragment.
 * 
 */
public class MapFragment extends Fragment {
    // TODO: Rename parameter arguments, choose names that match
    private GoogleMap mMap;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        View view = inflater.inflate(R.layout.fragment_map, container, false);
        SupportMapFragment mMapFragment = SupportMapFragment.newInstance();
        mMap = mMapFragment.getMap();
        FragmentTransaction transaction = getChildFragmentManager().beginTransaction();
        transaction.add(R.id.map_container, mMapFragment).commit();
        return view;
    }

    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);
        Log.d("Attach", "on attach");
    }

    @Override
    public void onDetach() {
        super.onDetach();
    }
} 

2
mMapFragment.getMap();nullผลตอบแทน มีความคิดอะไรไหม?
Anas Azeem

@AnasAzeem การสร้างแฟรกเมนต์โดยทางโปรแกรมแก้ปัญหาได้อย่างแน่นอนคุณไม่จำเป็นต้องรับ mMap สำหรับการแก้ปัญหาในกรณีของคุณ
ใช่

@AnasAzeem คุณควรใช้ getMapAsync ซึ่งจะส่งคืนอินสแตนซ์แผนที่อย่างถูกต้องหลังจากเริ่มต้น (ในพื้นหลัง) นี่เป็นวิธีที่ "ถูกต้อง" ในการทำงานกับ Google แผนที่และไม่เกี่ยวข้องกับเศษเล็กเศษน้อย
Ganesh Krishnan

10
  1. ตามที่กล่าวถึงโดย @Justin Breitfeller โซลูชัน @Vidar Wahlberg เป็นแฮ็คที่อาจไม่สามารถใช้งานได้ใน Android รุ่นอนาคต
  2. @Vidar Wahlberg ชอบแฮ็คเพราะโซลูชันอื่น ๆ อาจ "ทำให้แผนที่ถูกสร้างใหม่และวาดใหม่ซึ่งไม่เป็นที่ต้องการเสมอ" การวาดแผนที่ใหม่สามารถป้องกันได้โดยคงส่วนของแผนที่เก่าไว้แทนที่จะสร้างอินสแตนซ์ใหม่ทุกครั้ง
  3. @ วิธีแก้ไขปัญหาไม่ทำงานสำหรับฉัน (IllegalStateException)
  4. ตามที่ยกมาโดย @Justin Breitfeller "คุณไม่สามารถขยายเค้าโครงลงในแฟรกเมนต์เมื่อโครงร่างนั้นรวม a. แฟรกเมนต์ที่ซ้อนกันได้รับการสนับสนุนก็ต่อเมื่อถูกเพิ่มลงในแฟรกเมนต์แบบไดนามิก"

ทางออกของฉัน:

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

    // init
    //mapFragment = (SupportMapFragment)getChildFragmentManager().findFragmentById(R.id.map);
    // don't recreate fragment everytime ensure last map location/state are maintain
    if (mapFragment == null) {
        mapFragment = SupportMapFragment.newInstance();
        mapFragment.getMapAsync(this);
    }
    FragmentTransaction transaction = getChildFragmentManager().beginTransaction();
    // R.id.map is a layout
    transaction.replace(R.id.map, mapFragment).commit();

    return view;
}

2
ขอบคุณ @Desmond วิธีการแก้ปัญหาของคุณทำงานไม่มีที่ติสำหรับฉัน สิ่งเดียวที่คุณต้องจำก็คืออย่าสร้างแผนที่ในเลย์เอาต์ การสร้างแผนที่ในโซลูชันนี้ฝังอยู่ในรหัสดังนั้นเปลี่ยน <fragment android: name = "com.google.android.gms.maps.SupportMapFragment"> เป็นเช่น <LinearLayout id = "@ + id / แผนที่ />
kosiara - Bartosz Kosarzycki

7

ประกาศ SupportMapFragment วัตถุทั่วโลก

    private SupportMapFragment mapFragment;

ใน onCreateView () วิธีการใส่รหัสด้านล่าง

mapFragment = (SupportMapFragment) getChildFragmentManager()
            .findFragmentById(R.id.map);
 mapFragment.getMapAsync(this);

ใน onDestroyView () ใส่รหัสด้านล่าง

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

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

ในไฟล์ xml ของคุณให้ใส่โค้ดด้านล่าง

 <fragment
    android:id="@+id/map"
    android:name="com.abc.Driver.fragment.FragmentHome"
    class="com.google.android.gms.maps.SupportMapFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    />

โค้ดด้านบนแก้ปัญหาของฉันได้และมันก็ใช้ได้ดี


3

ฉันจะแนะนำreplace()มากกว่าattach()/ detach()ในการจัดการแท็บของคุณ

ViewPagerหรือเปลี่ยนไป นี่คือตัวอย่างโครงการที่แสดงViewPagerแท็บที่มีโฮสติ้ง 10 แผนที่


แต่แทนที่ให้ข้อผิดพลาด outofmemry กว่าสิ่งที่ควรทำถ้าเราใช้หน้าต่างแยกออกมากกว่าปัญหาแผนที่เกิดขึ้น
นักพัฒนา Vishal Android

3

ทางออกอื่น:

if (view == null) {
    view = inflater.inflate(R.layout.nearbyplaces, container, false);
}

เพียงเท่านี้ถ้าไม่เป็นโมฆะคุณไม่จำเป็นต้องทำการตั้งค่าเริ่มต้นใหม่จากการลบมันเป็นขั้นตอนที่ไม่จำเป็น


นี่เป็นทางออกที่ดีที่สุดสำหรับกรณีของฉันฉันได้รับข้อผิดพลาดนั้นเนื่องจากการใช้สองส่วนสำหรับกราฟการนำทางของฉันและสิ่งนี้ได้แก้ไขปัญหาของฉัน
Kennedy Kambo

นี่เป็นทางออกที่ดีที่สุดสำหรับกรณีของฉันฉันได้รับข้อผิดพลาดนั้นเนื่องจากการใช้สองส่วนสำหรับกราฟการนำทางของฉันและสิ่งนี้ได้แก้ไขปัญหาของฉัน
Kennedy Kambo

2

ฉันสูญเสียเวลาหลายชั่วโมงในวันนี้เพื่อหาเหตุผลโชคดีที่ปัญหานี้ไม่ได้เกิดจากการใช้งาน MapFragment แต่น่าเสียดายที่นี่ไม่สามารถใช้งานได้เนื่องจากแฟรกเมนต์ที่ซ้อนกันได้รับการสนับสนุนผ่านไลบรารีการสนับสนุนจาก rev 11 เท่านั้น

การนำไปใช้ของฉันมีกิจกรรมกับ actionbar (ในโหมดแท็บ) ที่มีสองแท็บ (ไม่มีวิวเพจเจอร์) หนึ่งรายการมีแผนที่และอีกรายการหนึ่งมีรายการอยู่ แน่นอนว่าฉันค่อนข้างไร้เดียงสาที่จะใช้ MapFragment ภายในแท็บแฟรกเมนต์และแอพ voila แอพขัดข้องทุกครั้งที่ฉันเปลี่ยนกลับเป็นแท็บแผนที่

(ปัญหาเดียวกันฉันก็จะมีในกรณีที่ชิ้นส่วนแท็บของฉันจะขยายรูปแบบใด ๆ ที่มีส่วนอื่น ๆ )

ทางเลือกหนึ่งคือการใช้ MapView (แทน MapFragment) โดยมีค่าใช้จ่ายบางส่วน (ดูMapView Docsเป็นการแทนที่แบบดรอปดาวน์ใน layout.xml ตัวเลือกอื่นคือใช้ support-library ขึ้นมาจาก rev 11 แต่ใช้แนวทางการเขียนโปรแกรม เนื่องจากแฟรกเมนต์ที่ซ้อนกันไม่ได้รับการสนับสนุนผ่านโครงร่างหรือเพียงแค่หลีกเลี่ยงการเขียนโปรแกรมโดยการทำลายชิ้นส่วนอย่างชัดเจน (เช่นในคำตอบจาก Matt / Vidar) btw: เอฟเฟ็กต์แบบเดียวกันทำได้โดยใช้ MapView (ตัวเลือก 1)

แต่ที่จริงแล้วฉันไม่ต้องการที่จะหลวมแผนที่ทุกครั้งที่ฉันแท็บออกไปนั่นคือฉันต้องการเก็บไว้ในหน่วยความจำและล้างเฉพาะเมื่อใกล้กิจกรรมดังนั้นฉันตัดสินใจที่จะซ่อน / แสดงแผนที่ในขณะที่แท็บดูFragmentTransaction / hide


2

สำหรับผู้ที่ยังคงพบปัญหานี้วิธีที่ดีที่สุดที่จะทำให้แน่ใจว่าคุณจะไม่ได้รับข้อผิดพลาดจากแผนที่ในแท็บคือการทำให้ส่วนขยายขยายSupportMapFragmentแทนที่จะซ้อนSupportMapFragmentภายในส่วนที่ใช้สำหรับแท็บ

ฉันเพิ่งได้รับการทำงานโดยใช้ViewPagerกับFragmentPagerAdapterกับกับ SupportMapFragment ในแท็บที่สาม

นี่คือโครงสร้างทั่วไปโปรดทราบว่าไม่จำเป็นต้องแทนที่onCreateView()วิธีการและไม่จำเป็นต้องขยาย xml โครงร่างใด ๆ :

public class MapTabFragment extends SupportMapFragment 
                                    implements OnMapReadyCallback {

    private GoogleMap mMap;
    private Marker marker;


    public MapTabFragment() {
    }

    @Override
    public void onResume() {
        super.onResume();

        setUpMapIfNeeded();
    }

    private void setUpMapIfNeeded() {

        if (mMap == null) {

            getMapAsync(this);
        }
    }

    @Override
    public void onMapReady(GoogleMap googleMap) {

        mMap = googleMap;
        setUpMap();
    }

    private void setUpMap() {

        mMap.setMyLocationEnabled(true);
        mMap.setMapType(GoogleMap.MAP_TYPE_HYBRID);
        mMap.getUiSettings().setMapToolbarEnabled(false);


        mMap.setOnMapClickListener(new GoogleMap.OnMapClickListener() {

            @Override
            public void onMapClick(LatLng point) {

                //remove previously placed Marker
                if (marker != null) {
                    marker.remove();
                }

                //place marker where user just clicked
                marker = mMap.addMarker(new MarkerOptions().position(point).title("Marker")
                        .icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_MAGENTA)));

            }
        });

    }


}

ผลลัพธ์:

ป้อนคำอธิบายรูปภาพที่นี่

นี่คือรหัสคลาสเต็มรูปแบบที่ฉันใช้ในการทดสอบซึ่งรวมถึงตัวยึดตำแหน่ง Fragment ที่ใช้สำหรับสองแท็บแรกและ Map Fragment ที่ใช้สำหรับแท็บที่สาม:

public class MainActivity extends AppCompatActivity implements ActionBar.TabListener{


    SectionsPagerAdapter mSectionsPagerAdapter;

    ViewPager mViewPager;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());

        // Set up the ViewPager with the sections adapter.
        mViewPager = (ViewPager) findViewById(R.id.pager);
        mViewPager.setAdapter(mSectionsPagerAdapter);

        final ActionBar actionBar = getSupportActionBar();
        actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);

        mViewPager.setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
            @Override
            public void onPageSelected(int position) {
                actionBar.setSelectedNavigationItem(position);
            }
        });

        for (int i = 0; i < mSectionsPagerAdapter.getCount(); i++) {
            actionBar.addTab(actionBar.newTab().setText(mSectionsPagerAdapter.getPageTitle(i)).setTabListener(this));
        }

    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {

        int id = item.getItemId();

        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }

    @Override
    public void onTabSelected(ActionBar.Tab tab, FragmentTransaction ft) {
        mViewPager.setCurrentItem(tab.getPosition());
    }

    @Override
    public void onTabUnselected(ActionBar.Tab tab, FragmentTransaction ft) {

    }

    @Override
    public void onTabReselected(ActionBar.Tab tab, FragmentTransaction ft) {

    }


    public class SectionsPagerAdapter extends FragmentPagerAdapter {

        public SectionsPagerAdapter(FragmentManager fm) {
            super(fm);
        }

        @Override
        public Fragment getItem(int position) {

            switch (position) {
                case 0:
                    return PlaceholderFragment.newInstance(position + 1);
                case 1:
                    return PlaceholderFragment.newInstance(position + 1);
                case 2:
                    return MapTabFragment.newInstance(position + 1);
            }

            return null;
        }

        @Override
        public int getCount() {
            // Show 3 total pages.
            return 3;
        }

        @Override
        public CharSequence getPageTitle(int position) {
            Locale l = Locale.getDefault();

            switch (position) {
                case 0:
                    return getString(R.string.title_section1).toUpperCase(l);
                case 1:
                    return getString(R.string.title_section2).toUpperCase(l);
                case 2:
                    return getString(R.string.title_section3).toUpperCase(l);
            }
            return null;
        }
    }


    public static class PlaceholderFragment extends Fragment {

        private static final String ARG_SECTION_NUMBER = "section_number";

        TextView text;

        public static PlaceholderFragment newInstance(int sectionNumber) {
            PlaceholderFragment fragment = new PlaceholderFragment();
            Bundle args = new Bundle();
            args.putInt(ARG_SECTION_NUMBER, sectionNumber);
            fragment.setArguments(args);
            return fragment;
        }

        public PlaceholderFragment() {
        }

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

            text = (TextView) rootView.findViewById(R.id.section_label);
            text.setText("placeholder");

            return rootView;
        }
    }

    public static class MapTabFragment extends SupportMapFragment implements
            OnMapReadyCallback {

        private static final String ARG_SECTION_NUMBER = "section_number";

        private GoogleMap mMap;
        private Marker marker;


        public static MapTabFragment newInstance(int sectionNumber) {
            MapTabFragment fragment = new MapTabFragment();
            Bundle args = new Bundle();
            args.putInt(ARG_SECTION_NUMBER, sectionNumber);
            fragment.setArguments(args);
            return fragment;
        }

        public MapTabFragment() {
        }

        @Override
        public void onResume() {
            super.onResume();

            Log.d("MyMap", "onResume");
            setUpMapIfNeeded();
        }

        private void setUpMapIfNeeded() {

            if (mMap == null) {

                Log.d("MyMap", "setUpMapIfNeeded");

                getMapAsync(this);
            }
        }

        @Override
        public void onMapReady(GoogleMap googleMap) {
            Log.d("MyMap", "onMapReady");
            mMap = googleMap;
            setUpMap();
        }

        private void setUpMap() {

            mMap.setMyLocationEnabled(true);
            mMap.setMapType(GoogleMap.MAP_TYPE_HYBRID);
            mMap.getUiSettings().setMapToolbarEnabled(false);


            mMap.setOnMapClickListener(new GoogleMap.OnMapClickListener() {

                @Override
                public void onMapClick(LatLng point) {

                    Log.d("MyMap", "MapClick");

                    //remove previously placed Marker
                    if (marker != null) {
                        marker.remove();
                    }

                    //place marker where user just clicked
                    marker = mMap.addMarker(new MarkerOptions().position(point).title("Marker")
                            .icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_MAGENTA)));

                    Log.d("MyMap", "MapClick After Add Marker");

                }
            });

        }
    }
}

2

ฉันเคารพคำตอบทั้งหมด แต่ฉันพบวิธีแก้ปัญหาซับนี้: ถ้า n คือจำนวนแท็บแล้ว:

 mViewPager.setOffscreenPageLimit(n);

ตัวอย่าง: ในกรณีที่กล่าวถึง:

 mViewPager.setOffscreenPageLimit(2);

มุมมองเพจเจอร์ใช้คิวดังนั้นคุณไม่ต้องให้มันลบส่วนนั้น onCreateView ถูกเรียกเพียงครั้งเดียว


1

คุณกำลังกลับมาหรือขยายเลย์เอาท์สองครั้งเพียงตรวจสอบเพื่อดูว่าคุณขยายครั้งเดียวเท่านั้น



0

คุณพยายามอ้างอิงMapFragmentคลาสที่คุณกำหนดเองในไฟล์เลย์เอาต์หรือไม่?

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

    <fragment
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/mapFragment"
        android:name="com.nfc.demo.MapFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>

คุณช่วยกรุณาโพสต์รหัสสำหรับแฟรกเมนต์แผนที่ที่กำหนดเองได้ com.nfc.demo.MapFragment
Mina Fawzy

ฉันไม่ใช่ผู้เขียนรหัส - ฉันใช้รหัสที่โพสต์ในคำถาม คุณต้องถามเฮอร์มันน์
JJD

0

ถ้าคุณจะใช้เพียงคำตอบ Vidar Wahlberg คุณจะได้รับข้อผิดพลาดเมื่อคุณเปิดกิจกรรมอื่น ๆ (ตัวอย่าง) และกลับไปที่แผนที่ หรือในกรณีของฉันเปิดกิจกรรมอื่น ๆ และจากกิจกรรมเปิดแผนที่ใหม่อีกครั้ง (โดยไม่ต้องใช้ปุ่มย้อนกลับ) แต่เมื่อคุณรวมโซลูชัน Vidar Wahlberg กับโซลูชันของ Matt คุณจะไม่มีข้อยกเว้น

แบบ

<com.example.ui.layout.MapWrapperLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/map_relative_layout">

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:id="@+id/root">

        <fragment xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/map"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            class="com.google.android.gms.maps.SupportMapFragment" />
    </RelativeLayout>
</<com.example.ui.layout.MapWrapperLayout>

ส่วน

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    setHasOptionsMenu(true);
    if (view != null) {
        ViewGroup parent = (ViewGroup) view.getParent();
        if (parent != null){
            parent.removeView(view);
        }
    }
    try {
        view = inflater.inflate(R.layout.map_view, null);
        if(view!=null){
            ViewGroup root = (ViewGroup) view.findViewById(R.id.root);
...

@Override
public void onDestroyView() {
    super.onDestroyView();
    Fragment fragment = this.getSherlockActivity().getSupportFragmentManager().findFragmentById(R.id.map);
    if (fragment != null)
        getFragmentManager().beginTransaction().remove(fragment).commit();
}

0

ฉันมีสิ่งนี้ใน viewPager และความผิดพลาดเป็นเพราะส่วนใด ๆ ต้องมีแท็กของตัวเองแท็กที่ซ้ำกันหรือรหัสสำหรับส่วนเดียวกันไม่ได้รับอนุญาต


0

ฉันคิดว่ามีข้อบกพร่องบางอย่างใน lib-Compat-App ก่อนหน้านี้สำหรับ Fragment Child ฉันลอง @Vidar Wahlberg และ ans ของ @ Matt พวกเขาไม่ได้ทำงานให้ฉัน หลังจากอัปเดตไลบรารี appcompat โค้ดของฉันทำงานได้อย่างสมบูรณ์แบบโดยไม่ต้องใช้ความพยายามใด ๆ เพิ่มเติม


0

สิ่งที่ควรทราบไว้ที่นี่คือแอปของคุณจะเกิดปัญหาอย่างรุนแรงในสองกรณี: -

1) เพื่อที่จะนำชิ้นส่วนของ Maps กลับมาใช้ใหม่อีกครั้ง MapView Fragment จะต้องถูกลบออกเมื่อชิ้นส่วนที่แสดง Maps ของคุณถูกแทนที่ด้วยชิ้นส่วนอื่น ๆ ในการโทรกลับบนเดสทรอยดู

มิฉะนั้นเมื่อคุณพยายามขยายแฟรกเมนต์เดียวกันซ้ำสองครั้งID ที่ซ้ำกัน, แท็ก null หรือ id หลักที่มีแฟรกเมนต์อื่นสำหรับ com.google.android.gms.maps.Map.MragFragmentจะเกิดข้อผิดพลาด

2) ประการที่สองคุณต้องไม่รวมแอปการจัดเรียงข้อมูลกับ android.support.v4.app.Fragment API การดำเนินงานเช่นห้ามใช้ android.app.FragmentTransaction เพื่อลบ v4.app.Fragment ประเภท 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;

/**
 * @author 663918
 *
 */
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(2);

        // 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

 <fragment
        android:id="@+id/map"
        android:name="com.google.android.gms.maps.MapFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
       />

ผลลัพธ์มีลักษณะเช่นนี้: -ป้อนคำอธิบายรูปภาพที่นี่

หวังว่ามันจะช่วยใครซักคน


0

ในการแก้ปัญหานี้คุณไม่จำเป็นต้องใช้ตัวแปรแบบคงที่

Button nextBtn;

private SupportMapFragment mMapFragment;

@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    super.onCreateView(inflater, container, savedInstanceState);

    if (mRootView != null) {
        ViewGroup parent = (ViewGroup) mRootView.getParent();
        Utility.log(0,"removeView","mRootView not NULL");
        if (parent != null) {
            Utility.log(0, "removeView", "view removeViewed");
            parent.removeAllViews();
        }
    }
    else {
        try {
            mRootView = inflater.inflate(R.layout.dummy_fragment_layout_one, container, false);//
        } catch (InflateException e) {
    /* map is already there, just return view as it is  */
            e.printStackTrace();
        }
    }

    return  mRootView;
}

@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
    super.onViewCreated(view, savedInstanceState);
    FragmentManager fm = getChildFragmentManager();
    SupportMapFragment mapFragment = (SupportMapFragment) fm.findFragmentById(R.id.mapView);
    if (mapFragment == null) {
        mapFragment = new SupportMapFragment();
        FragmentTransaction ft = fm.beginTransaction();
        ft.add(R.id.mapView, mapFragment, "mapFragment");
        ft.commit();
        fm.executePendingTransactions();
    }
    //mapFragment.getMapAsync(this);
    nextBtn = (Button) view.findViewById(R.id.nextBtn);
    nextBtn.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Utility.replaceSupportFragment(getActivity(),R.id.dummyFragment,dummyFragment_2.class.getSimpleName(),null,new dummyFragment_2());
        }
    });

}`

0

ฉันมาสายไปงานเลี้ยงเล็กน้อย แต่คำตอบที่ไม่ได้ช่วยฉันในกรณีของฉัน ผมใช้ Google map เป็นSupportMapFragmentและPlaceAutocompleteFragmentทั้งในส่วนของฉัน เป็นคำตอบทั้งหมดชี้ไปที่ความจริงที่ว่าปัญหาเกิดขึ้นกับ SupportMapFragment เป็นแผนที่ที่จะสร้างใหม่และวาดใหม่ แต่หลังจากขุดพบว่าปัญหาของฉันเป็นจริงด้วยPlaceAutocompleteFragment

ดังนั้นนี่คือวิธีแก้ปัญหาการทำงานสำหรับผู้ที่ประสบปัญหานี้เนื่องจากSupportMapFragmentและSupportMapFragment

 //Global SupportMapFragment mapFragment;
 mapFragment = (SupportMapFragment) getChildFragmentManager().findFragmentById(R.id.mapFragment);
    FragmentManager fm = getChildFragmentManager();

    if (mapFragment == null) {
        mapFragment = SupportMapFragment.newInstance();
        fm.beginTransaction().replace(R.id.mapFragment, mapFragment).commit();
        fm.executePendingTransactions();
    }

    mapFragment.getMapAsync(this);

    //Global PlaceAutocompleteFragment autocompleteFragment;


    if (autocompleteFragment == null) {
        autocompleteFragment = (PlaceAutocompleteFragment) getActivity().getFragmentManager().findFragmentById(R.id.place_autoCompleteFragment);

    }

และใน onDestroyView ให้ล้าง SupportMapFragment และ SupportMapFragment

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


    if (getActivity() != null) {
        Log.e("res","place dlted");
        android.app.FragmentManager fragmentManager = getActivity().getFragmentManager();
        android.app.FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
        fragmentTransaction.remove(autocompleteFragment);
        fragmentTransaction.commit(); 
       //Use commitAllowingStateLoss() if getting exception 

        autocompleteFragment = null;
    }


}

0

ลองตั้งค่า id (android: id = "@ + id / maps_dialog") สำหรับแผนผังมุมมองหลักของคุณ ใช้งานได้สำหรับฉัน


0

ทุกคนที่มาที่นี่ในขณะนี้ซึ่งได้รับข้อผิดพลาดประเภทนี้เมื่อเปิดDialogหรืออื่น ๆFragmentด้วย Google สถานที่AutocompleteSupportFragmentลองใช้สายการบินเดียว (ฉันไม่ทราบว่าวิธีนี้ปลอดภัยแค่ไหน

autocompleteFragment.getFragmentManager().beginTransaction().remove(autocompleteFragment).commit();

ก่อนที่คุณจะยกเลิก / ทำลายชิ้นส่วนของคุณ


-1
<?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" >


<com.google.android.gms.maps.MapView
    android:id="@+id/mapview"
    android:layout_width="100dip"
    android:layout_height="100dip"
    android:layout_alignParentTop="true"
    android:layout_alignRight="@+id/textView1"
    android:layout_marginRight="15dp" >
</com.google.android.gms.maps.MapView>

ทำไมคุณไม่แทรกแผนที่โดยใช้วัตถุ MapView แทน MapFragment ฉันไม่แน่ใจว่ามีข้อ จำกัด ใน MapView หรือไม่ แต่ฉันคิดว่าเป็นประโยชน์


ขออภัยฉันได้ทราบว่าเป็นเวอร์ชันก่อนหน้าของ Google Maps API ที่เลิกใช้แล้ว
Ankur Gautam
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.