Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having some problems mixing the old Google Nexus One with the new SupportMapFragment.

In a particular landscape view I have an HorizontalScrollView with a map and some info in a way you have to scroll in order to actually see the info.

The problem is that scrolling makes (somehow I can't understand right now) the SupportMapFragment's background visible (which seems to be black by default) while actually scrolling the whole view

Picture to show what I mean.

Behaviour demo

Altough not the same exact issue, there is a similar, reported bug, about it in gmaps-api-issues


So, what I've tested so far:

  • Setting the background to @color/transparent, even in XML and/or programatically.
  • Changing the SupportMapFragment z-ordering

Setting this code before calling my map:

GoogleMapOptions op = new GoogleMapOptions();
op.zOrderOnTop(true);
SupportMapFragment.newInstance(op);

So I ran out of ideas. I've successfully tested same exact code in:

  • Galaxy Nexus
  • HTC Desire HD
  • Samsung Galaxy S3
  • Samsung Galaxy Mini
  • Galaxy Ace

EDIT: An interesting thing is, taking the screenshot made me realize that it was imposible to capture my specific case. When the screenshot was taken, the error only could be reproduced by changing to portrait and landscape again.

Any ideas? Did I missed anything obvious?

Thanks in advance for your comments.

share|improve this question
1  
This post sounds similar, so may help – iagreen Jan 23 at 18:09

1 Answer

up vote 3 down vote accepted

I had a very similar issue but when i was adding the SlidingMenu library and i fixed it by using the hack on this comment

public class MyMapFragment extends SupportMapFragment() {

   @Override
   public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
       View view = super.onCreateView(inflater, container, savedInstanceState);
       setMapTransparent((ViewGroup) view);
       return view;
   };

   private void setMapTransparent(ViewGroup group) {
       int childCount = group.getChildCount();
       for (int i = 0; i < childCount; i++) {
       View child = group.getChildAt(i);
       if (child instanceof ViewGroup) {
           setMapTransparent((ViewGroup) child);
       } else if (child instanceof SurfaceView) {
           child.setBackgroundColor(0x00000000);
       }
   }
 }
share|improve this answer
Indeed, this solved my issue. Thx for sharing the knoledge! – Eloi Jan 24 at 14:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.