Scrollview not working in android phone
<ScrollView android:id="@+id/scrlListView"
android:layout_width="match_parent"
android:layout_marginTop="5sp"
android:layout_height="213dp">
<LinearLayout android:id="@+id/linrListView"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView android:id="@+id/listcontact"
android:layout_width="match_parent"
android:divider="@null"
android:dividerHeight="2dp"
android:scrollbars="vertical"
android:fastScrollEnabled="true"
android:layout_height="281dp"
android:cacheColorHint="#00000000">
</ListView>
</LinearLayout>
</ScrollView>
Whats the problem in this code?