ScrollView ne défile pas du tout

Je ne peux pas faire un ScrollView correctement défilement. Toujours couper le contenu sur le fond, comme si c'était normal LinearLayout.

Mon code

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

    <LinearLayout android:id="@+id/scroll_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:isScrollContainer="true"
        android:orientation="vertical" >

Bien sûr, j'ai déjà essayé d'ajouter /supprimer les "fillViewport" et "isScrollContainer" propriétés", et ça ne changeait rien du tout.

Merci d'avance.

source d'informationauteur thomaus