ScrollView w ogóle się nie przewija

Nie mogę poprawnie przewinąć ScrollView. Zawsze odcina zawartość na dole, tak jakby to była normalna linia.

Mój kod

<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" >

Oczywiście próbowałem już dodawać / usuwać właściwości „fillViewport” i „isScrollContainer” i nic nie zmieniało.

Z góry dziękuję.

questionAnswers(9)

yourAnswerToTheQuestion