I've the following Activity:
 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/FiltersLayout" android:orientation="vertical"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    >
    <ScrollView android:id="@+id/FiltersScroll"
        android:orientation="vertical" android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1">
        <ExpandableListView android:id="@+id/featureList"
            android:layout_width="fill_parent" android:stretchColumns="*" android:orientation="vertical" android:layout_height="fill_parent">
        </ExpandableListView>
    </ScrollView>
</LinearLayout>
I need the ExpandableListView to scratch the screen, but it shows as the following:
![Anzroiz ListView][1]
 
    