Comment ajouter des fragments de programme dans relativelayout

J'ai conçu un RelativeLayout. Je suis en train d'ajouter un fragment. Il chevauche. Que dois-je faire pour qu'il arrive l'un en dessous des autres.

    FragmentTransaction t = getSupportFragmentManager().beginTransaction();

    FragmentTest myFragment = new FragmentTest();
    t.add(layout.getId(), myFragment, "myFirstFragment");

    FragmentTest myFragment2 = new FragmentTest();
    t.add(layout.getId(), myFragment2, "mySecondFragment");

    t.commit();

//Vue sur myFragment et myFragment2 chevauchements même si j'ai mis l'orientation à la verticale.

<RelativeLayout
    android:id="@+id/idll1"
    android:layout_width="fill_parent"
    android:layout_height="50dp"
    android:layout_marginLeft="10sp"
    android:layout_marginRight="0sp"
    android:layout_marginTop="10sp"
    android:layout_weight="1"
    android:paddingBottom="5dp"
    android:paddingLeft="10dp"
    android:paddingRight="5dp"
    android:paddingTop="5dp" 
    android:orientation="vertical"/>

OriginalL'auteur Satish | 2012-11-02