Comment placer un RelativeLayout au fond d'un RelativeLayout?

J'ai un RelativeLayout, et cette Disposition a deux enfants, l'un est un MapView et de l'autre un RelativeLayout qui contient un bouton.

Je veux qu'il regarde comme ça

Comment placer un RelativeLayout au fond d'un RelativeLayout?

mais ma boîte transparente (un RelativeLayout) est toujours affiché en haut de la carte.

<RelativeLayout 
  android:layout_width="wrap_content"
  android:layout_height="wrap_content">

  <com.google.android.maps.MapView
    android:id="@+id/mapView"/>

    <test.project.TransparentPanel 
      android:layout_width="fill_parent"
      android:layout_width="fill_parent">   

        <Button 
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="Click Me!"/>   

    </test.project.TransparentPanel>

</RelativeLayout>   

(je l'ai laissé de côté certaines choses dans le code)

  • Pourquoi est - android:layout_width="fill_parent" utilisé deux fois?