Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a problem by swiping between two fragments. one fragment should display a google map v2 and the other one should display only a picture. its still working but the fault is, that the supportmapfragment is displayed twice. once fix in the background and a moveable in the foreground. that means that fragment A shows the map twice and when i swipe to fragment B, it displays both fragments. for a better overview i uploaded a screenshot when i swipe from left to right.

i am not sure, what i am doing wrong. here is the code. The Fragmentactivity:

public class MainActivity extends FragmentActivity implements OnMapClickListener {

 SectionsPagerAdapter mSectionsPagerAdapter;
 ViewPager mViewPager;

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

  mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());

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

The FragmentPagerAdapter:

public class SectionsPagerAdapter extends FragmentPagerAdapter {

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

@Override
public Fragment getItem(int position) {

    if (position < 1) {
        return SupportMapFragment.newInstance();
    }
    else {
        Test_Fragment f = new Test_Fragment(position);
        return f;
    }
}

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

@Override
public CharSequence getPageTitle(int position) {
    switch (position) {
    case 0:
        return "Map Fragment";
    case 1:
        return "Picture Fragment";
    }
    return null;
}
    }

The Fragment:

public class Test_Fragment extends Fragment {

    private int fragmentNR;

    public Test_Fragment(int nr) {
        this.fragmentNR = nr;
    }

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

        return (RelativeLayout) inflater.inflate(R.layout.fragment_picture, container, false);
    }
}

the main.xml:

<RelativeLayout 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.support.v4.view.ViewPager
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentBottom="true"
        tools:context=".MainActivity" >

     <android.support.v4.view.PagerTitleStrip
            android:id="@+id/pager_title_strip"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="top"
            android:background="#33b5e5"
            android:paddingBottom="4dp"
            android:paddingTop="4dp"
            android:textColor="#fff" />      
    </android.support.v4.view.ViewPager>

     <fragment
         android:id="@+id/map"
         android:layout_width="match_parent"
         android:layout_height="380dp"
         android:layout_alignParentBottom="true"
         android:layout_alignParentLeft="true"
         class="com.google.android.gms.maps.SupportMapFragment" />

      </RelativeLayout>

and the fragment_picture.xml:

<RelativeLayout 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"
tools:context=".MainActivity" >

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:layout_marginBottom="65dp"
    android:layout_marginTop="50dp"
    android:src="@drawable/ic_launcher" />

   </RelativeLayout>

the code has been kept relatively simple you see. any ideas how to fix that? I would be very grateful for any little help. thanks in advance.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.