Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6799773
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T18:53:18+00:00 2026-05-26T18:53:18+00:00

I’m converting an application I’ve written and part of it is a GoogleMap component

  • 0

I’m converting an application I’ve written and part of it is a GoogleMap component which I’m trying to put in to a fragment and I’m having issues.

I first had a look at android-support-v4-googlemaps and wasn’t happy that every FragmentActivity would implement Maps, but having followed these instructions on how to make a MapFragmentActivity I was having problems as now the map would show but on rotating I’d get the “You are only allowed to have a single MapView in a MapActivity error” – following this answer of registering the MapView in code, in the fragment, I got the error that I could only register the MapView in a MapActivity.

So I’ve now implemented android-support-v4-googlemaps and I’m still getting the error on rotation.

I’ve come to a dead end, and I’m getting a bit frustrated – does anyone know how to fix this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T18:53:19+00:00Added an answer on May 26, 2026 at 6:53 pm

    I had the same problem with the android-support-v4-googlemaps library. The solution was quite simple after reading carefully how fragments work. Basically, the framework saves the state of fragments on rotation. So, what you need to do is to only instantiate your fragments if there is no saved state (i.e. at the first run of your activity).

    Here is an example code that worked for me:

    public class MyMapFragmentActivity extends FragmentActivity {
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_map);
    
            //... init views, do stuff ...
    
            // Only instantiate fragments at first run
            if (savedInstancestate == null) {
                // Add map & list fragments
                FragmentManager fm = getSupportFragmentManager();
                MapFragment mapFragment = new MapFragment();
                AnotherFragment another = new AnotherFragment();
                FragmentTransaction ft = fm.beginTransaction();
                ft.add(R.id.fragment_map, mapFragment, "fragment_map");
                ft.add(R.id.fragment_another, anotherFragment, "fragment_another");
                ft.commit();
            }
    
            //... do more stuff ...
        }
    
    }
    

    In this case I didn’t even override the onSavedInstanceState(), as I didn’t have anything to save. Keep in mind that this solutions is using the FragmentMapActivity library hack.

    I hope this helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I am trying to understand how to use SyndicationItem to display feed which is
We're building an app, our first using Rails 3, and we're having to build
I am trying to loop through a bunch of documents I have to put
I used javascript for loading a picture on my website depending on which small
Basically, what I'm trying to create is a page of div tags, each has
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I have a text area in my form which accepts all possible characters from
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I'm trying to use string.replace('’','') to replace the dreaded weird single-quote character: ’ (aka

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.