ScrollView funktioniert nicht in fragment

Weiß jemand, warum die Schriftrolle nicht funktioniert? Ich versuche, meine Seite scrollbar zu machen und kann auf eine andere Registerkarte wischen. Es erlaubt mir zu streichen, aber nicht scrollbar. Ich verwende den größten Teil der Antwort in Stack Overflow, aber in meinem Fall funktioniert keine.

<?xml version="1.0" encoding="utf-8"?>


<AbsoluteLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
xmlns:android="http://schemas.android.com/apk/res/android">

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



    <android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    </android.support.v4.view.ViewPager>

<TextView
        android:layout_width="353dp"
        android:layout_height="91dp"
        android:text="Use the form below to change your information or update any others of your information"
        android:id="@+id/textView16"
        android:layout_x="9dp"
        android:layout_y="57dp"
        android:textSize="20dp" />


    <EditText
        android:layout_width="186dp"
        android:layout_height="wrap_content"
        android:inputType="textPersonName"
        android:text="Name"
        android:ems="10"
        android:id="@+id/editText9"
        android:layout_x="17dp"
        android:layout_y="146dp" />

    <EditText
        android:layout_width="143dp"
        android:layout_height="wrap_content"
        android:id="@+id/editText12"
        android:layout_x="226dp"
        android:layout_y="146dp" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="Information"
        android:id="@+id/textView17"
        android:layout_x="20dp"
        android:layout_y="203dp" />

    <TextView
        android:layout_width="95dp"
        android:layout_height="37dp"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:text="Weather"
        android:id="@+id/textView15"
        android:layout_x="20dp"
        android:layout_y="253dp" />

    <Spinner
        android:layout_width="174dp"
        android:layout_height="53dp"
        android:id="@+id/spinner5"
        android:layout_x="174dp"
        android:layout_y="238dp" />

</AbsoluteLayout>