Le bouton s'affiche toujours en haut dans FrameLayout

J'ai FrameLayout comme ceci:

<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="changeColor"
        android:text="new button"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="some text"/>

</FrameLayout>

Le problème est que le bouton est affiché sur le dessus tandis FrameLayout présentation de la classe nous dit ceci: "les vues Enfant sont tirés dans une pile, avec le plus récemment ajouté enfant d'en haut".

InformationsquelleAutor Nokuap | 2015-08-31